2021-01-23 14:15:07 +01:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch
|
2018-01-24 16:10:08 +01:00
|
|
|
, bzip2
|
|
|
|
, expat
|
|
|
|
, libffi
|
|
|
|
, gdbm
|
|
|
|
, lzma
|
|
|
|
, ncurses
|
|
|
|
, openssl
|
|
|
|
, readline
|
|
|
|
, sqlite
|
2018-12-31 04:40:47 +01:00
|
|
|
, tcl ? null, tk ? null, tix ? null, libX11 ? null, xorgproto ? null, x11Support ? false
|
2020-06-22 12:46:17 +02:00
|
|
|
, bluez ? null, bluezSupport ? false
|
2018-01-24 16:10:08 +01:00
|
|
|
, zlib
|
|
|
|
, self
|
2020-01-12 21:29:45 +01:00
|
|
|
, configd
|
2020-05-14 04:52:36 +02:00
|
|
|
, autoreconfHook
|
2020-11-09 19:37:15 +01:00
|
|
|
, autoconf-archive
|
2018-01-24 16:10:08 +01:00
|
|
|
, python-setup-hook
|
2018-12-08 13:19:02 +01:00
|
|
|
, nukeReferences
|
2018-01-24 16:10:08 +01:00
|
|
|
# For the Python package set
|
2018-07-21 02:44:44 +02:00
|
|
|
, packageOverrides ? (self: super: {})
|
2020-11-18 18:13:11 +01:00
|
|
|
, pkgsBuildBuild
|
2020-11-27 16:24:42 +01:00
|
|
|
, pkgsBuildHost
|
2020-11-18 18:13:11 +01:00
|
|
|
, pkgsBuildTarget
|
|
|
|
, pkgsHostHost
|
|
|
|
, pkgsTargetTarget
|
2018-12-31 13:59:20 +01:00
|
|
|
, sourceVersion
|
|
|
|
, sha256
|
|
|
|
, passthruFun
|
2019-01-02 20:09:44 +01:00
|
|
|
, bash
|
2019-08-18 23:10:20 +02:00
|
|
|
, stripConfig ? false
|
2019-08-18 22:23:13 +02:00
|
|
|
, stripIdlelib ? false
|
2019-08-18 22:34:12 +02:00
|
|
|
, stripTests ? false
|
2019-08-19 00:11:17 +02:00
|
|
|
, stripTkinter ? false
|
2019-08-18 23:31:32 +02:00
|
|
|
, rebuildBytecode ? true
|
2019-08-18 23:31:45 +02:00
|
|
|
, stripBytecode ? false
|
2020-03-12 14:15:02 +01:00
|
|
|
, includeSiteCustomize ? true
|
2021-01-03 22:40:14 +01:00
|
|
|
, static ? stdenv.hostPlatform.isStatic
|
2020-06-12 08:55:57 +02:00
|
|
|
# Not using optimizations on Darwin
|
|
|
|
# configure: error: llvm-profdata is required for a --enable-optimizations build but could not be found.
|
|
|
|
, enableOptimizations ? (!stdenv.isDarwin)
|
2020-11-18 18:13:11 +01:00
|
|
|
, pythonAttr ? "python${sourceVersion.major}${sourceVersion.minor}"
|
2018-01-24 16:10:08 +01:00
|
|
|
}:
|
|
|
|
|
2020-06-26 22:44:45 +02:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2018-01-24 16:10:08 +01:00
|
|
|
assert x11Support -> tcl != null
|
|
|
|
&& tk != null
|
2018-12-31 04:40:47 +01:00
|
|
|
&& xorgproto != null
|
2018-01-24 16:10:08 +01:00
|
|
|
&& libX11 != null;
|
2020-06-22 12:46:17 +02:00
|
|
|
|
|
|
|
assert bluezSupport -> bluez != null;
|
|
|
|
|
2021-01-23 14:15:07 +01:00
|
|
|
with lib;
|
2018-01-24 16:10:08 +01:00
|
|
|
|
|
|
|
let
|
2020-11-27 16:24:42 +01:00
|
|
|
buildPackages = pkgsBuildHost;
|
|
|
|
inherit (passthru) pythonForBuild;
|
2020-11-18 18:13:11 +01:00
|
|
|
|
2018-12-31 13:59:20 +01:00
|
|
|
passthru = passthruFun rec {
|
|
|
|
inherit self sourceVersion packageOverrides;
|
|
|
|
implementation = "cpython";
|
|
|
|
libPrefix = "python${pythonVersion}";
|
|
|
|
executable = libPrefix;
|
|
|
|
pythonVersion = with sourceVersion; "${major}.${minor}";
|
|
|
|
sitePackages = "lib/${libPrefix}/site-packages";
|
2020-11-27 16:24:42 +01:00
|
|
|
inherit hasDistutilsCxxPatch;
|
2020-11-28 16:56:51 +01:00
|
|
|
pythonOnBuildForBuild = pkgsBuildBuild.${pythonAttr};
|
|
|
|
pythonOnBuildForHost = pkgsBuildHost.${pythonAttr};
|
|
|
|
pythonOnBuildForTarget = pkgsBuildTarget.${pythonAttr};
|
|
|
|
pythonOnHostForHost = pkgsHostHost.${pythonAttr};
|
|
|
|
pythonOnTargetForTarget = pkgsTargetTarget.${pythonAttr} or {};
|
2018-12-31 13:59:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
version = with sourceVersion; "${major}.${minor}.${patch}${suffix}";
|
|
|
|
|
2020-06-12 08:55:57 +02:00
|
|
|
nativeBuildInputs = optionals (!stdenv.isDarwin) [
|
2020-05-14 04:52:36 +02:00
|
|
|
autoreconfHook
|
2020-11-09 19:37:15 +01:00
|
|
|
] ++ optionals (!stdenv.isDarwin && passthru.pythonAtLeast "3.10") [
|
|
|
|
autoconf-archive # needed for AX_CHECK_COMPILE_FLAG
|
2020-06-12 08:55:57 +02:00
|
|
|
] ++ [
|
2018-12-31 13:59:20 +01:00
|
|
|
nukeReferences
|
|
|
|
] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2019-01-02 20:09:44 +01:00
|
|
|
buildPackages.stdenv.cc
|
|
|
|
pythonForBuild
|
2018-12-31 13:59:20 +01:00
|
|
|
];
|
2018-01-24 16:10:08 +01:00
|
|
|
|
2020-01-12 21:29:45 +01:00
|
|
|
buildInputs = filter (p: p != null) ([
|
2019-01-01 23:00:56 +01:00
|
|
|
zlib bzip2 expat lzma libffi gdbm sqlite readline ncurses openssl ]
|
2018-12-31 04:40:47 +01:00
|
|
|
++ optionals x11Support [ tcl tk libX11 xorgproto ]
|
2020-06-22 12:46:17 +02:00
|
|
|
++ optionals (bluezSupport && stdenv.isLinux) [ bluez ]
|
2020-01-12 21:29:45 +01:00
|
|
|
++ optionals stdenv.isDarwin [ configd ]);
|
2018-01-24 16:10:08 +01:00
|
|
|
|
2018-07-03 19:29:07 +02:00
|
|
|
hasDistutilsCxxPatch = !(stdenv.cc.isGNU or false);
|
2018-12-31 13:59:20 +01:00
|
|
|
|
2019-01-02 20:09:44 +01:00
|
|
|
pythonForBuildInterpreter = if stdenv.hostPlatform == stdenv.buildPlatform then
|
2018-12-18 13:06:37 +01:00
|
|
|
"$out/bin/python"
|
2019-01-02 20:09:44 +01:00
|
|
|
else pythonForBuild.interpreter;
|
2018-01-24 16:10:08 +01:00
|
|
|
|
2020-09-26 03:40:10 +02:00
|
|
|
# The CPython interpreter contains a _sysconfigdata_<platform specific suffix>
|
|
|
|
# module that is imported by the sysconfig and distutils.sysconfig modules.
|
|
|
|
# The sysconfigdata module is generated at build time and contains settings
|
|
|
|
# required for building Python extension modules, such as include paths and
|
|
|
|
# other compiler flags. By default, the sysconfigdata module is loaded from
|
|
|
|
# the currently running interpreter (ie. the build platform interpreter), but
|
|
|
|
# when cross-compiling we want to load it from the host platform interpreter.
|
|
|
|
# This can be done using the _PYTHON_SYSCONFIGDATA_NAME environment variable.
|
|
|
|
# The _PYTHON_HOST_PLATFORM variable also needs to be set to get the correct
|
|
|
|
# platform suffix on extension modules. The correct values for these variables
|
|
|
|
# are not documented, and must be derived from the configure script (see links
|
|
|
|
# below).
|
|
|
|
sysconfigdataHook = with stdenv.hostPlatform; with passthru; let
|
|
|
|
# https://github.com/python/cpython/blob/e488e300f5c01289c10906c2e53a8e43d6de32d8/configure.ac#L428
|
|
|
|
# The configure script uses "arm" as the CPU name for all 32-bit ARM
|
|
|
|
# variants when cross-compiling, but native builds include the version
|
|
|
|
# suffix, so we do the same.
|
|
|
|
pythonHostPlatform = "${parsed.kernel.name}-${parsed.cpu.name}";
|
|
|
|
|
|
|
|
# https://github.com/python/cpython/blob/e488e300f5c01289c10906c2e53a8e43d6de32d8/configure.ac#L724
|
|
|
|
multiarchCpu =
|
|
|
|
if isAarch32 then
|
|
|
|
if parsed.cpu.significantByte.name == "littleEndian" then "arm" else "armeb"
|
|
|
|
else if isx86_32 then "i386"
|
|
|
|
else parsed.cpu.name;
|
2021-01-21 10:05:50 +01:00
|
|
|
pythonAbiName =
|
|
|
|
# python's build doesn't differentiate between musl and glibc in its
|
|
|
|
# abi detection, our wrapper should match.
|
|
|
|
if stdenv.hostPlatform.isMusl then
|
|
|
|
replaceStrings [ "musl" ] [ "gnu" ] parsed.abi.name
|
|
|
|
else parsed.abi.name;
|
2020-09-26 03:40:10 +02:00
|
|
|
multiarch =
|
|
|
|
if isDarwin then "darwin"
|
2021-01-21 10:05:50 +01:00
|
|
|
else "${multiarchCpu}-${parsed.kernel.name}-${pythonAbiName}";
|
2020-09-26 03:40:10 +02:00
|
|
|
|
|
|
|
abiFlags = optionalString (isPy36 || isPy37) "m";
|
|
|
|
|
|
|
|
# https://github.com/python/cpython/blob/e488e300f5c01289c10906c2e53a8e43d6de32d8/configure.ac#L78
|
|
|
|
pythonSysconfigdataName = "_sysconfigdata_${abiFlags}_${parsed.kernel.name}_${multiarch}";
|
|
|
|
in ''
|
|
|
|
sysconfigdataHook() {
|
|
|
|
if [ "$1" = '${placeholder "out"}' ]; then
|
|
|
|
export _PYTHON_HOST_PLATFORM='${pythonHostPlatform}'
|
|
|
|
export _PYTHON_SYSCONFIGDATA_NAME='${pythonSysconfigdataName}'
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
addEnvHooks "$hostOffset" sysconfigdataHook
|
|
|
|
'';
|
|
|
|
|
2018-12-31 13:59:20 +01:00
|
|
|
in with passthru; stdenv.mkDerivation {
|
|
|
|
pname = "python3";
|
|
|
|
inherit version;
|
2018-01-24 16:10:08 +01:00
|
|
|
|
2018-12-31 13:59:20 +01:00
|
|
|
inherit buildInputs nativeBuildInputs;
|
2018-12-18 13:06:37 +01:00
|
|
|
|
2018-01-24 16:10:08 +01:00
|
|
|
src = fetchurl {
|
2018-12-31 13:59:20 +01:00
|
|
|
url = with sourceVersion; "https://www.python.org/ftp/python/${major}.${minor}.${patch}/Python-${version}.tar.xz";
|
|
|
|
inherit sha256;
|
2018-01-24 16:10:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
prePatch = optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace configure --replace '`/usr/bin/arch`' '"i386"'
|
|
|
|
substituteInPlace configure --replace '-Wl,-stack_size,1000000' ' '
|
2019-08-26 02:35:19 +02:00
|
|
|
'' + optionalString (stdenv.isDarwin && x11Support) ''
|
|
|
|
substituteInPlace setup.py --replace /Library/Frameworks /no-such-path
|
2018-01-24 16:10:08 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
patches = [
|
2018-12-31 13:59:20 +01:00
|
|
|
# Disable the use of ldconfig in ctypes.util.find_library (since
|
|
|
|
# ldconfig doesn't work on NixOS), and don't use
|
|
|
|
# ctypes.util.find_library during the loading of the uuid module
|
|
|
|
# (since it will do a futile invocation of gcc (!) to find
|
|
|
|
# libuuid, slowing down program startup a lot).
|
|
|
|
(./. + "/${sourceVersion.major}.${sourceVersion.minor}/no-ldconfig.patch")
|
2019-04-17 22:03:57 +02:00
|
|
|
] ++ optionals (isPy35 || isPy36) [
|
|
|
|
# Determinism: Write null timestamps when compiling python files.
|
|
|
|
./3.5/force_bytecode_determinism.patch
|
2018-12-31 13:59:20 +01:00
|
|
|
] ++ optionals isPy35 [
|
|
|
|
# Backports support for LD_LIBRARY_PATH from 3.6
|
|
|
|
./3.5/ld_library_path.patch
|
2020-04-14 13:50:11 +02:00
|
|
|
] ++ optionals (isPy35 || isPy36 || isPy37) [
|
|
|
|
# Backport a fix for discovering `rpmbuild` command when doing `python setup.py bdist_rpm` to 3.5, 3.6, 3.7.
|
|
|
|
# See: https://bugs.python.org/issue11122
|
|
|
|
./3.7/fix-hardcoded-path-checking-for-rpmbuild.patch
|
2021-02-27 06:03:53 +01:00
|
|
|
# The workaround is for unittests on Win64, which we don't support.
|
|
|
|
# It does break aarch64-darwin, which we do support. See:
|
|
|
|
# * https://bugs.python.org/issue35523
|
|
|
|
# * https://github.com/python/cpython/commit/e6b247c8e524
|
|
|
|
./3.7/no-win64-workaround.patch
|
2020-05-31 03:28:37 +02:00
|
|
|
] ++ optionals (isPy37 || isPy38 || isPy39) [
|
2018-07-02 23:54:19 +02:00
|
|
|
# Fix darwin build https://bugs.python.org/issue34027
|
2019-08-12 07:48:35 +02:00
|
|
|
./3.7/darwin-libutil.patch
|
cpython: Use --enable-optimizations, for a 16% speedup.
Without this flag, the configure script prints a warning at the end,
like this (reformatted):
If you want a release build with all stable optimizations active
(PGO, etc), please run ./configure --enable-optimizations
We're doing a build to distribute to people for day-to-day use,
doing things other than developing the Python interpreter. So
that's certainly a release build -- we're the target audience for
this recommendation.
---
And, trying it out, upstream isn't kidding! I ran the standard
benchmark suite that the CPython developers use for performance
work, "pyperformance". Following its usage instructions:
https://pyperformance.readthedocs.io/usage.html
I ran the whole suite, like so:
$ nix-shell -p ./result."$variant" --run '
cd $(mktemp -d); python -m venv venv; . venv/bin/activate
pip install pyperformance
pyperformance run -o ~/tmp/result.'"$variant"'.json
'
and then examined the results with commands like:
$ python -m pyperf compare_to --table -G \
~/tmp/result.{$before,$after}.json
Across all the benchmarks in the suite, the median speedup was 16%.
(Meaning 1.16x faster; 14% less time).
The middle half of them ranged from a 13% to a 22% speedup.
Each of the 60 benchmarks in the suite got faster, by speedups
ranging from 3% to 53%.
---
One reason this isn't just the default to begin with is that, until
recently, it made the build a lot slower. What it does is turn on
profile-guided optimization, which means first build for profiling,
then run some task to get a profile, then build again using the
profile. And, short of further customization, the task it would use
would be nearly the full test suite, which includes a lot of
expensive and slow tests, and can easily take half an hour to run.
Happily, in 2019 an upstream developer did the work to carefully
select a more appropriate set of tests to use for the profile:
https://github.com/python/cpython/commit/4e16a4a31
https://bugs.python.org/issue36044
This suite takes just 2 minutes to run. And the resulting final
build is actually slightly faster than with the much longer suite,
at least as measured by those standard "pyperformance" benchmarks.
That work went into the 3.8 release, but the same list works great
if used on older releases too.
So, start passing that --enable-optimizations flag; and backport
that good-for-PGO set of tests, so that we use it on all releases.
2020-03-29 23:05:04 +02:00
|
|
|
] ++ optionals (pythonOlder "3.8") [
|
|
|
|
# Backport from CPython 3.8 of a good list of tests to run for PGO.
|
|
|
|
(
|
|
|
|
if isPy36 || isPy37 then
|
|
|
|
./3.6/profile-task.patch
|
|
|
|
else
|
|
|
|
./3.5/profile-task.patch
|
|
|
|
)
|
2018-12-31 13:59:20 +01:00
|
|
|
] ++ optionals (isPy3k && hasDistutilsCxxPatch) [
|
2018-07-03 19:29:07 +02:00
|
|
|
# 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.
|
2019-03-10 02:58:31 +01:00
|
|
|
(
|
|
|
|
if isPy35 then
|
|
|
|
./3.5/python-3.x-distutils-C++.patch
|
2020-05-31 03:28:37 +02:00
|
|
|
else if isPy37 || isPy38 || isPy39 then
|
2019-04-15 19:47:25 +02:00
|
|
|
./3.7/python-3.x-distutils-C++.patch
|
2019-03-10 02:58:31 +01:00
|
|
|
else
|
|
|
|
fetchpatch {
|
|
|
|
url = "https://bugs.python.org/file48016/python-3.x-distutils-C++.patch";
|
|
|
|
sha256 = "1h18lnpx539h5lfxyk379dxwr8m2raigcjixkf133l4xy3f4bzi2";
|
|
|
|
}
|
|
|
|
)
|
2020-06-21 11:56:50 +02:00
|
|
|
] ++ [
|
|
|
|
# LDSHARED now uses $CC instead of gcc. Fixes cross-compilation of extension modules.
|
|
|
|
./3.8/0001-On-all-posix-systems-not-just-Darwin-set-LDSHARED-if.patch
|
2020-09-26 03:40:10 +02:00
|
|
|
# Use sysconfigdata to find headers. Fixes cross-compilation of extension modules.
|
|
|
|
(
|
|
|
|
if isPy36 then
|
|
|
|
./3.6/fix-finding-headers-when-cross-compiling.patch
|
|
|
|
else
|
|
|
|
./3.7/fix-finding-headers-when-cross-compiling.patch
|
|
|
|
)
|
2021-02-19 00:44:38 +01:00
|
|
|
] ++ optionals (isPy36) [
|
2020-12-21 18:03:17 +01:00
|
|
|
# Backport a fix for ctypes.util.find_library.
|
2021-02-19 00:44:38 +01:00
|
|
|
./3.6/find_library.patch
|
2018-01-24 16:10:08 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
2020-08-12 09:42:56 +02:00
|
|
|
substituteInPlace Lib/subprocess.py \
|
|
|
|
--replace "'/bin/sh'" "'${bash}/bin/sh'"
|
2018-01-24 16:10:08 +01:00
|
|
|
'' + optionalString (x11Support && (tix != null)) ''
|
|
|
|
substituteInPlace "Lib/tkinter/tix.py" --replace "os.environ.get('TIX_LIBRARY')" "os.environ.get('TIX_LIBRARY') or '${tix}/lib'"
|
|
|
|
'';
|
|
|
|
|
2019-09-09 01:38:31 +02:00
|
|
|
CPPFLAGS = concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs);
|
|
|
|
LDFLAGS = concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs);
|
2018-12-31 13:59:20 +01:00
|
|
|
LIBS = "${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}";
|
2020-03-29 11:27:09 +02:00
|
|
|
NIX_LDFLAGS = optionalString (stdenv.isLinux && !stdenv.hostPlatform.isMusl) "-lgcc_s" + optionalString stdenv.hostPlatform.isMusl "-lgcc_eh";
|
2018-12-31 13:59:20 +01:00
|
|
|
# Determinism: We fix the hashes of str, bytes and datetime objects.
|
|
|
|
PYTHONHASHSEED=0;
|
2018-01-24 16:10:08 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared"
|
|
|
|
"--without-ensurepip"
|
|
|
|
"--with-system-expat"
|
|
|
|
"--with-system-ffi"
|
2020-06-04 18:37:59 +02:00
|
|
|
] ++ optionals enableOptimizations [
|
|
|
|
"--enable-optimizations"
|
2020-03-30 00:32:53 +02:00
|
|
|
] ++ optionals (pythonOlder "3.7") [
|
|
|
|
# This is unconditionally true starting in CPython 3.7.
|
|
|
|
"--with-threads"
|
2019-08-31 13:59:00 +02:00
|
|
|
] ++ optionals (sqlite != null && isPy3k) [
|
|
|
|
"--enable-loadable-sqlite-extensions"
|
2019-08-17 17:30:26 +02:00
|
|
|
] ++ optionals (openssl != null) [
|
2018-07-01 21:57:13 +02:00
|
|
|
"--with-openssl=${openssl.dev}"
|
2018-12-18 13:06:37 +01:00
|
|
|
] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
"ac_cv_buggy_getaddrinfo=no"
|
|
|
|
# Assume little-endian IEEE 754 floating point when cross compiling
|
|
|
|
"ac_cv_little_endian_double=yes"
|
|
|
|
"ac_cv_big_endian_double=no"
|
|
|
|
"ac_cv_mixed_endian_double=no"
|
|
|
|
"ac_cv_x87_double_rounding=yes"
|
|
|
|
"ac_cv_tanh_preserves_zero_sign=yes"
|
|
|
|
# Generally assume that things are present and work
|
|
|
|
"ac_cv_posix_semaphores_enabled=yes"
|
|
|
|
"ac_cv_broken_sem_getvalue=no"
|
|
|
|
"ac_cv_wchar_t_signed=yes"
|
|
|
|
"ac_cv_rshift_extends_sign=yes"
|
|
|
|
"ac_cv_broken_nice=no"
|
|
|
|
"ac_cv_broken_poll=no"
|
|
|
|
"ac_cv_working_tzset=yes"
|
|
|
|
"ac_cv_have_long_long_format=yes"
|
|
|
|
"ac_cv_have_size_t_format=yes"
|
|
|
|
"ac_cv_computed_gotos=yes"
|
|
|
|
"ac_cv_file__dev_ptmx=yes"
|
|
|
|
"ac_cv_file__dev_ptc=yes"
|
2018-12-31 13:59:20 +01:00
|
|
|
] ++ optionals stdenv.hostPlatform.isLinux [
|
|
|
|
# Never even try to use lchmod on linux,
|
|
|
|
# don't rely on detecting glibc-isms.
|
|
|
|
"ac_cv_func_lchmod=no"
|
2020-03-29 11:27:09 +02:00
|
|
|
] ++ optional static "LDFLAGS=-static";
|
2018-01-24 16:10:08 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
for i in /usr /sw /opt /pkg; do # improve purity
|
|
|
|
substituteInPlace ./setup.py --replace $i /no-such-path
|
|
|
|
done
|
2018-12-31 13:59:20 +01:00
|
|
|
'' + optionalString stdenv.isDarwin ''
|
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.6
|
|
|
|
'' + optionalString (isPy3k && pythonOlder "3.7") ''
|
2019-04-17 22:03:57 +02:00
|
|
|
# Determinism: The interpreter is patched to write null timestamps when compiling Python files
|
|
|
|
# so Python doesn't try to update the bytecode when seeing frozen timestamps in Nix's store.
|
2018-12-31 13:59:20 +01:00
|
|
|
export DETERMINISTIC_BUILD=1;
|
|
|
|
'' + optionalString stdenv.hostPlatform.isMusl ''
|
|
|
|
export NIX_CFLAGS_COMPILE+=" -DTHREAD_STACK_SIZE=0x100000"
|
2018-01-24 16:10:08 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
setupHook = python-setup-hook sitePackages;
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# needed for some packages, especially packages that backport functionality
|
|
|
|
# to 2.x from 3.x
|
2018-12-31 13:59:20 +01:00
|
|
|
for item in $out/lib/${libPrefix}/test/*; do
|
2018-01-24 16:10:08 +01:00
|
|
|
if [[ "$item" != */test_support.py*
|
|
|
|
&& "$item" != */test/support
|
|
|
|
&& "$item" != */test/libregrtest
|
|
|
|
&& "$item" != */test/regrtest.py* ]]; then
|
|
|
|
rm -rf "$item"
|
|
|
|
else
|
|
|
|
echo $item
|
|
|
|
fi
|
|
|
|
done
|
2018-12-31 13:59:20 +01:00
|
|
|
touch $out/lib/${libPrefix}/test/__init__.py
|
2018-01-24 16:10:08 +01:00
|
|
|
|
2018-12-31 13:59:20 +01:00
|
|
|
ln -s "$out/include/${executable}m" "$out/include/${executable}"
|
2018-01-24 16:10:08 +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
|
|
|
|
|
|
|
|
# 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"
|
|
|
|
ln -s "$out/lib/pkgconfig/python3.pc" "$out/lib/pkgconfig/python.pc"
|
|
|
|
|
|
|
|
# Get rid of retained dependencies on -dev packages, and remove
|
|
|
|
# some $TMPDIR references to improve binary reproducibility.
|
|
|
|
# Note that the .pyc file of _sysconfigdata.py should be regenerated!
|
2018-12-31 13:59:20 +01:00
|
|
|
for i in $out/lib/${libPrefix}/_sysconfigdata*.py $out/lib/${libPrefix}/config-${sourceVersion.major}${sourceVersion.minor}*/Makefile; do
|
|
|
|
sed -i $i -e "s|$TMPDIR|/no-such-path|g"
|
2018-01-24 16:10:08 +01:00
|
|
|
done
|
|
|
|
|
2018-12-08 13:19:02 +01:00
|
|
|
# Further get rid of references. https://github.com/NixOS/nixpkgs/issues/51668
|
2019-01-22 22:46:59 +01:00
|
|
|
find $out/lib/python*/config-* -type f -print -exec nuke-refs -e $out '{}' +
|
|
|
|
find $out/lib -name '_sysconfigdata*.py*' -print -exec nuke-refs -e $out '{}' +
|
2018-12-08 13:19:02 +01:00
|
|
|
|
2020-09-26 03:40:10 +02:00
|
|
|
# Make the sysconfigdata module accessible on PYTHONPATH
|
|
|
|
# This allows build Python to import host Python's sysconfigdata
|
|
|
|
mkdir -p "$out/${sitePackages}"
|
|
|
|
ln -s "$out/lib/${libPrefix}/"_sysconfigdata*.py "$out/${sitePackages}/"
|
2019-08-18 23:10:20 +02:00
|
|
|
'' + optionalString stripConfig ''
|
|
|
|
rm -R $out/bin/python*-config $out/lib/python*/config-*
|
2019-08-18 22:23:13 +02:00
|
|
|
'' + optionalString stripIdlelib ''
|
|
|
|
# Strip IDLE (and turtledemo, which uses it)
|
|
|
|
rm -R $out/bin/idle* $out/lib/python*/{idlelib,turtledemo}
|
2019-08-19 00:11:17 +02:00
|
|
|
'' + optionalString stripTkinter ''
|
|
|
|
rm -R $out/lib/python*/tkinter
|
2019-08-18 22:34:12 +02:00
|
|
|
'' + optionalString stripTests ''
|
|
|
|
# Strip tests
|
|
|
|
rm -R $out/lib/python*/test $out/lib/python*/**/test{,s}
|
2020-03-12 14:15:02 +01:00
|
|
|
'' + optionalString includeSiteCustomize ''
|
2017-05-22 11:01:00 +02:00
|
|
|
# Include a sitecustomize.py file
|
|
|
|
cp ${../sitecustomize.py} $out/${sitePackages}/sitecustomize.py
|
2019-08-18 23:31:32 +02:00
|
|
|
'' + optionalString rebuildBytecode ''
|
2017-05-22 11:01:00 +02:00
|
|
|
|
2018-01-24 16:10:08 +01: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
|
|
|
|
# Python 3.7 implements PEP 552, introducing support for deterministic bytecode.
|
|
|
|
# This is automatically used when `SOURCE_DATE_EPOCH` is set.
|
2019-01-02 20:09:44 +01:00
|
|
|
find $out -name "*.py" | ${pythonForBuildInterpreter} -m compileall -q -f -x "lib2to3" -i -
|
|
|
|
find $out -name "*.py" | ${pythonForBuildInterpreter} -O -m compileall -q -f -x "lib2to3" -i -
|
|
|
|
find $out -name "*.py" | ${pythonForBuildInterpreter} -OO -m compileall -q -f -x "lib2to3" -i -
|
2019-08-18 23:31:45 +02:00
|
|
|
'' + optionalString stripBytecode ''
|
|
|
|
find $out -type d -name __pycache__ -print0 | xargs -0 -I {} rm -rf "{}"
|
2019-01-02 20:09:44 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-23 14:15:07 +01:00
|
|
|
preFixup = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
2019-01-02 20:09:44 +01:00
|
|
|
# Ensure patch-shebangs uses shebangs of host interpreter.
|
2021-01-23 14:15:07 +01:00
|
|
|
export PATH=${lib.makeBinPath [ "$out" bash ]}:$PATH
|
2018-01-24 16:10:08 +01:00
|
|
|
'';
|
|
|
|
|
2020-09-26 03:40:10 +02:00
|
|
|
# Add CPython specific setup-hook that configures distutils.sysconfig to
|
|
|
|
# always load sysconfigdata from host Python.
|
2021-01-23 14:15:07 +01:00
|
|
|
postFixup = lib.optionalString (!stdenv.hostPlatform.isDarwin) ''
|
2020-09-26 03:40:10 +02:00
|
|
|
cat << "EOF" >> "$out/nix-support/setup-hook"
|
|
|
|
${sysconfigdataHook}
|
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
|
2018-12-08 13:19:02 +01:00
|
|
|
# Enforce that we don't have references to the OpenSSL -dev package, which we
|
|
|
|
# explicitly specify in our configure flags above.
|
2019-08-17 17:30:26 +02:00
|
|
|
disallowedReferences =
|
2021-01-23 14:15:07 +01:00
|
|
|
lib.optionals (openssl != null && !static) [ openssl.dev ]
|
|
|
|
++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2019-01-02 20:09:44 +01:00
|
|
|
# Ensure we don't have references to build-time packages.
|
|
|
|
# These typically end up in shebangs.
|
|
|
|
pythonForBuild buildPackages.bash
|
|
|
|
];
|
2018-12-08 13:19:02 +01:00
|
|
|
|
2018-12-31 13:59:20 +01:00
|
|
|
inherit passthru;
|
2018-01-24 16:10:08 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://python.org";
|
2018-01-24 16:10:08 +01:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
license = licenses.psfl;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2018-12-31 13:59:20 +01:00
|
|
|
maintainers = with maintainers; [ fridh ];
|
2018-01-24 16:10:08 +01:00
|
|
|
};
|
|
|
|
}
|