2017-02-16 23:10:42 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch
|
2015-09-15 07:46:20 +02:00
|
|
|
, bzip2
|
2017-02-19 11:36:05 +01:00
|
|
|
, expat
|
|
|
|
, libffi
|
2015-09-15 07:46:20 +02:00
|
|
|
, gdbm
|
|
|
|
, lzma
|
|
|
|
, ncurses
|
|
|
|
, openssl
|
|
|
|
, readline
|
|
|
|
, sqlite
|
2017-01-01 19:37:02 +01:00
|
|
|
, tcl ? null, tk ? null, tix ? null, libX11 ? null, xproto ? null, x11Support ? false
|
2015-09-15 07:46:20 +02:00
|
|
|
, zlib
|
|
|
|
, callPackage
|
|
|
|
, self
|
2015-10-21 21:24:40 +02:00
|
|
|
, CF, configd
|
2017-05-19 14:21:58 +02:00
|
|
|
, python-setup-hook
|
2016-12-04 09:51:12 +01:00
|
|
|
# For the Python package set
|
2018-07-21 02:44:44 +02:00
|
|
|
, packageOverrides ? (self: super: {})
|
2015-09-15 07:46:20 +02:00
|
|
|
}:
|
|
|
|
|
2016-10-14 15:06:01 +02:00
|
|
|
assert x11Support -> tcl != null
|
|
|
|
&& tk != null
|
|
|
|
&& xproto != null
|
|
|
|
&& libX11 != null;
|
2015-09-15 07:46:20 +02:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
majorVersion = "3.5";
|
2018-08-02 16:30:27 +02:00
|
|
|
minorVersion = "6";
|
2016-09-20 13:01:30 +02:00
|
|
|
minorVersionSuffix = "";
|
|
|
|
version = "${majorVersion}.${minorVersion}${minorVersionSuffix}";
|
|
|
|
libPrefix = "python${majorVersion}";
|
2016-10-06 17:22:07 +02:00
|
|
|
sitePackages = "lib/${libPrefix}/site-packages";
|
2015-09-15 07:46:20 +02:00
|
|
|
|
|
|
|
buildInputs = filter (p: p != null) [
|
2017-02-19 11:36:05 +01:00
|
|
|
zlib bzip2 expat lzma libffi gdbm sqlite readline ncurses openssl ]
|
2016-10-14 15:06:01 +02:00
|
|
|
++ optionals x11Support [ tcl tk libX11 xproto ]
|
|
|
|
++ optionals stdenv.isDarwin [ CF configd ];
|
|
|
|
|
2018-04-26 23:54:25 +02:00
|
|
|
hasDistutilsCxxPatch = !(stdenv.cc.isGNU or false);
|
|
|
|
|
2016-10-14 15:06:01 +02:00
|
|
|
in stdenv.mkDerivation {
|
2016-09-20 13:01:30 +02:00
|
|
|
name = "python3-${version}";
|
2015-09-15 07:46:20 +02:00
|
|
|
pythonVersion = majorVersion;
|
|
|
|
inherit majorVersion version;
|
|
|
|
|
2016-05-15 13:38:02 +02:00
|
|
|
inherit buildInputs;
|
2015-10-21 21:24:40 +02:00
|
|
|
|
2015-09-15 07:46:20 +02:00
|
|
|
src = fetchurl {
|
2016-09-20 13:01:30 +02:00
|
|
|
url = "https://www.python.org/ftp/python/${majorVersion}.${minorVersion}/Python-${version}.tar.xz";
|
2018-08-02 16:30:27 +02:00
|
|
|
sha256 = "0pqmf51zy2lzhbaj4yya2py2qr653j9152d0rg3p7wi1yl2dwp7m";
|
2015-09-15 07:46:20 +02:00
|
|
|
};
|
|
|
|
|
2016-04-26 10:50:48 +02:00
|
|
|
NIX_LDFLAGS = optionalString stdenv.isLinux "-lgcc_s";
|
2015-09-15 07:46:20 +02:00
|
|
|
|
2017-02-09 10:14:21 +01:00
|
|
|
# Determinism: The interpreter is patched to write null timestamps when compiling python files.
|
|
|
|
# This way python doesn't try to update them when we freeze timestamps in nix store.
|
|
|
|
DETERMINISTIC_BUILD=1;
|
|
|
|
# Determinism: We fix the hashes of str, bytes and datetime objects.
|
|
|
|
PYTHONHASHSEED=0;
|
|
|
|
|
2016-04-26 10:50:48 +02:00
|
|
|
prePatch = optionalString stdenv.isDarwin ''
|
2015-10-21 21:24:40 +02:00
|
|
|
substituteInPlace configure --replace '`/usr/bin/arch`' '"i386"'
|
2016-08-26 23:12:24 +02:00
|
|
|
substituteInPlace configure --replace '-Wl,-stack_size,1000000' ' '
|
2015-10-21 21:24:40 +02:00
|
|
|
'';
|
|
|
|
|
2017-08-12 13:22:04 +02:00
|
|
|
patches = [
|
|
|
|
./no-ldconfig.patch
|
2017-09-14 10:17:58 +02:00
|
|
|
./ld_library_path.patch
|
2018-04-27 23:37:44 +02:00
|
|
|
] ++ optionals stdenv.isDarwin [
|
|
|
|
# Fix for https://bugs.python.org/issue24658
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://bugs.python.org/file45178/issue24658-3-3.6.diff";
|
|
|
|
sha256 = "1x060hs80nl34mcl2ji2i7l4shxkmxwgq8h8lcmav8rjqqz1nb4a";
|
|
|
|
})
|
2018-03-15 19:49:09 +01:00
|
|
|
] ++ optionals (x11Support && stdenv.isDarwin) [
|
|
|
|
./use-correct-tcl-tk-on-darwin.patch
|
2018-04-26 23:54:25 +02:00
|
|
|
] ++ optionals hasDistutilsCxxPatch [
|
|
|
|
# Fix for http://bugs.python.org/issue1222585
|
|
|
|
# Upstream distutils is calling C compiler to compile C++ code, which
|
|
|
|
# only works for GCC and Apple Clang. This makes distutils to call C++
|
|
|
|
# compiler when needed.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://bugs.python.org/file47046/python-3.x-distutils-C++.patch";
|
|
|
|
sha256 = "0dgdn9k2kmw4wh90vdnjcrnn97ylxgx7mbn9l87fwz6j501jqvk8";
|
|
|
|
extraPrefix = "";
|
|
|
|
})
|
2017-08-12 13:22:04 +02:00
|
|
|
];
|
|
|
|
|
2017-02-09 10:14:21 +01:00
|
|
|
postPatch = ''
|
|
|
|
# Determinism
|
|
|
|
substituteInPlace "Lib/py_compile.py" --replace "source_stats['mtime']" "(1 if 'DETERMINISTIC_BUILD' in os.environ else source_stats['mtime'])"
|
|
|
|
# Determinism. This is done unconditionally
|
|
|
|
substituteInPlace "Lib/importlib/_bootstrap_external.py" --replace "source_mtime = int(st['mtime'])" "source_mtime = 1"
|
|
|
|
'' + optionalString (x11Support && (tix != null)) ''
|
2017-01-01 19:37:02 +01:00
|
|
|
substituteInPlace "Lib/tkinter/tix.py" --replace "os.environ.get('TIX_LIBRARY')" "os.environ.get('TIX_LIBRARY') or '${tix}/lib'"
|
|
|
|
'';
|
|
|
|
|
2017-02-09 10:14:21 +01:00
|
|
|
CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}";
|
|
|
|
LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}";
|
|
|
|
LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}";
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared"
|
|
|
|
"--with-threads"
|
|
|
|
"--without-ensurepip"
|
2017-02-19 11:36:05 +01:00
|
|
|
"--with-system-expat"
|
|
|
|
"--with-system-ffi"
|
cpython: don't use lchmod() on Linux, fix w/musl
upstream issue:
https://bugs.python.org/issue31940
There are two PR's proposed to fix this,
but both seem to be stalling waiting for review.
I previously used what appears to be the favored
of the two approaches[1] to fix this,
with plan of keeping it musl-only until PR was merged.
However, while writing up a commit message
explaining the problem and why it needed fixing...
I investigated a bit and found it increasingly
hard to justify anything other than ...
simply not using lchmod.
Here's what I found:
* lchmod is non-POSIX, seems BSD-only these days
* Functionality of lchmod isn't supported on Linux
* best scenario on Linux would be an error
* POSIX does provide lchmod-esque functionality
with fchmodat(), which AFAICT is generally preferred.
* Python intentionally overlooks fchmodat()[2]
electing instead to use lchmod() behavior
as a proxy for whether fchmodat() "works".
I'm not sure I follow their reasoning...
* both glibc and musl provide lchmod impls:
* glibc returns ENOSYS "not implemented"
* musl implements lchmod with fchmodat(),
and so returns EOPNOTSUPP "op not supported"
* Python doesn't expect EOPNOTSUPP from lchmod,
since it's not valid on BSD's lchmod.
* "configure" doesn't actually check lchmod usefully,
instead checks for glibc preprocessor defines
to indicate if the function is just a stub[3];
somewhat fittingly, if the magic macros are defined
then the next line of the C source is "choke me",
causing the compiler to trip, fall, and point
a finger at whatever is near where it ends up.
(somewhat amusing, but AFAIK effective way to get an error :P)
I'm leaving out links to threads on mailing lists and such,
but for now I hope I've convinced you
(or to those reading commit history: explained my reasons)
that this is a bit of a mess[4].
And so instead of making a big mess messier,
and with hopes of never thinking about this again,
I propose we simply tell Python "don't use lchmod" on Linux.
[1] https://github.com/python/cpython/pull/4783
[2] https://github.com/python/cpython/blob/28453feaa8d88bbcbf6d834b1d5ca396d17265f2/Lib/os.py#L144
[3] https://github.com/python/cpython/blob/28453feaa8d88bbcbf6d834b1d5ca396d17265f2/configure#L2198
[4] Messes happen, no good intention goes unpunished :).
2018-04-26 02:42:35 +02:00
|
|
|
]
|
|
|
|
# Never even try to use lchmod on linux,
|
|
|
|
# don't rely on detecting glibc-isms.
|
|
|
|
++ optional stdenv.hostPlatform.isLinux "ac_cv_func_lchmod=no";
|
2017-02-09 10:14:21 +01:00
|
|
|
|
2015-09-15 07:46:20 +02:00
|
|
|
preConfigure = ''
|
|
|
|
for i in /usr /sw /opt /pkg; do # improve purity
|
|
|
|
substituteInPlace ./setup.py --replace $i /no-such-path
|
|
|
|
done
|
|
|
|
${optionalString stdenv.isDarwin ''
|
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.6
|
2018-03-20 14:10:08 +01:00
|
|
|
''
|
|
|
|
+ optionalString stdenv.hostPlatform.isMusl ''
|
|
|
|
export NIX_CFLAGS_COMPILE+=" -DTHREAD_STACK_SIZE=0x100000"
|
2015-09-15 07:46:20 +02:00
|
|
|
''}
|
|
|
|
'';
|
|
|
|
|
2017-05-19 14:21:58 +02:00
|
|
|
setupHook = python-setup-hook sitePackages;
|
2015-09-15 07:46:20 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# needed for some packages, especially packages that backport functionality
|
|
|
|
# to 2.x from 3.x
|
|
|
|
for item in $out/lib/python${majorVersion}/test/*; do
|
2017-08-24 17:38:28 +02:00
|
|
|
if [[ "$item" != */test_support.py*
|
|
|
|
&& "$item" != */test/support
|
|
|
|
&& "$item" != */test/libregrtest
|
|
|
|
&& "$item" != */test/regrtest.py* ]]; then
|
2015-09-15 07:46:20 +02:00
|
|
|
rm -rf "$item"
|
|
|
|
else
|
|
|
|
echo $item
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
touch $out/lib/python${majorVersion}/test/__init__.py
|
|
|
|
|
|
|
|
ln -s "$out/include/python${majorVersion}m" "$out/include/python${majorVersion}"
|
|
|
|
paxmark E $out/bin/python${majorVersion}
|
2016-09-20 13:16:26 +02:00
|
|
|
|
|
|
|
# Python on Nix is not manylinux1 compatible. https://github.com/NixOS/nixpkgs/issues/18484
|
|
|
|
echo "manylinux1_compatible=False" >> $out/lib/${libPrefix}/_manylinux.py
|
2016-10-14 19:45:53 +02:00
|
|
|
|
2017-02-09 10:14:21 +01:00
|
|
|
# Determinism: Windows installers were not deterministic.
|
|
|
|
# We're also not interested in building Windows installers.
|
|
|
|
find "$out" -name 'wininst*.exe' | xargs -r rm -f
|
|
|
|
|
2016-10-14 19:45:53 +02:00
|
|
|
# Use Python3 as default python
|
|
|
|
ln -s "$out/bin/idle3" "$out/bin/idle"
|
|
|
|
ln -s "$out/bin/pydoc3" "$out/bin/pydoc"
|
|
|
|
ln -s "$out/bin/python3" "$out/bin/python"
|
|
|
|
ln -s "$out/bin/python3-config" "$out/bin/python-config"
|
2016-10-17 22:20:52 +02:00
|
|
|
ln -s "$out/lib/pkgconfig/python3.pc" "$out/lib/pkgconfig/python.pc"
|
2017-02-09 10:14:21 +01:00
|
|
|
|
2016-09-01 15:20:49 +02:00
|
|
|
# Get rid of retained dependencies on -dev packages, and remove
|
|
|
|
# some $TMPDIR references to improve binary reproducibility.
|
2017-04-16 10:40:53 +02:00
|
|
|
# Note that the .pyc file of _sysconfigdata.py should be regenerated!
|
2016-10-06 17:22:07 +02:00
|
|
|
for i in $out/lib/python${majorVersion}/_sysconfigdata.py $out/lib/python${majorVersion}/config-${majorVersion}m/Makefile; do
|
2016-09-01 16:01:36 +02:00
|
|
|
sed -i $i -e "s|-I/nix/store/[^ ']*||g" -e "s|-L/nix/store/[^ ']*||g" -e "s|$TMPDIR|/no-such-path|g"
|
2016-09-01 15:20:49 +02:00
|
|
|
done
|
|
|
|
|
2017-04-16 10:40:53 +02:00
|
|
|
# Determinism: rebuild all bytecode
|
|
|
|
# We exclude lib2to3 because that's Python 2 code which fails
|
|
|
|
# We rebuild three times, once for each optimization level
|
|
|
|
find $out -name "*.py" | $out/bin/python -m compileall -q -f -x "lib2to3" -i -
|
|
|
|
find $out -name "*.py" | $out/bin/python -O -m compileall -q -f -x "lib2to3" -i -
|
|
|
|
find $out -name "*.py" | $out/bin/python -OO -m compileall -q -f -x "lib2to3" -i -
|
2016-09-01 15:20:49 +02:00
|
|
|
'';
|
|
|
|
|
2016-12-04 09:51:12 +01:00
|
|
|
passthru = let
|
2018-09-25 21:26:39 +02:00
|
|
|
pythonPackages = callPackage ../../../../../top-level/python-packages.nix {
|
|
|
|
python = self;
|
|
|
|
overrides = packageOverrides;
|
|
|
|
};
|
2016-12-04 09:51:12 +01:00
|
|
|
in rec {
|
2018-04-26 23:54:25 +02:00
|
|
|
inherit libPrefix sitePackages x11Support hasDistutilsCxxPatch;
|
2016-09-20 13:01:30 +02:00
|
|
|
executable = "${libPrefix}m";
|
2017-05-28 09:20:47 +02:00
|
|
|
buildEnv = callPackage ../../wrapper.nix { python = self; inherit (pythonPackages) requiredPythonModules; };
|
2016-12-04 09:51:12 +01:00
|
|
|
withPackages = import ../../with-packages.nix { inherit buildEnv pythonPackages;};
|
|
|
|
pkgs = pythonPackages;
|
2015-09-15 07:46:20 +02:00
|
|
|
isPy3 = true;
|
|
|
|
isPy35 = true;
|
|
|
|
interpreter = "${self}/bin/${executable}";
|
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-04-25 05:20:18 +02:00
|
|
|
doCheck = false; # expensive, and fails
|
|
|
|
|
2015-09-15 07:46:20 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://python.org;
|
|
|
|
description = "A high-level dynamically-typed programming language";
|
|
|
|
longDescription = ''
|
|
|
|
Python is a remarkably powerful dynamic programming language that
|
|
|
|
is used in a wide variety of application domains. Some of its key
|
|
|
|
distinguishing features include: clear, readable syntax; strong
|
|
|
|
introspection capabilities; intuitive object orientation; natural
|
|
|
|
expression of procedural code; full modularity, supporting
|
|
|
|
hierarchical packages; exception-based error handling; and very
|
|
|
|
high level dynamic data types.
|
|
|
|
'';
|
2016-04-26 10:50:48 +02:00
|
|
|
license = licenses.psfl;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2018-01-20 12:25:56 +01:00
|
|
|
maintainers = with maintainers; [ fridh ];
|
2015-09-15 07:46:20 +02:00
|
|
|
};
|
|
|
|
}
|