2024-02-29 20:09:43 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchurl
|
|
|
|
|
, fetchpatch
|
|
|
|
|
, fetchgit
|
|
|
|
|
|
|
|
|
|
# build dependencies
|
|
|
|
|
, autoconf-archive
|
|
|
|
|
, autoreconfHook
|
|
|
|
|
, nukeReferences
|
|
|
|
|
, pkg-config
|
|
|
|
|
, python-setup-hook
|
|
|
|
|
|
|
|
|
|
# runtime dependencies
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, bzip2
|
|
|
|
|
, expat
|
|
|
|
|
, libffi
|
2024-02-29 20:09:43 +00:00
|
|
|
|
, libxcrypt
|
|
|
|
|
, mpdecimal
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, ncurses
|
|
|
|
|
, openssl
|
|
|
|
|
, sqlite
|
2024-02-29 20:09:43 +00:00
|
|
|
|
, xz
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, zlib
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
|
|
# platform-specific dependencies
|
|
|
|
|
, bash
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, configd
|
2023-03-04 12:14:45 +00:00
|
|
|
|
, darwin
|
2023-10-09 19:29:22 +00:00
|
|
|
|
, windows
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
|
|
# optional dependencies
|
|
|
|
|
, bluezSupport ? false, bluez
|
|
|
|
|
, mimetypesSupport ? true, mailcap
|
|
|
|
|
, tzdata
|
|
|
|
|
, withGdbm ? !stdenv.hostPlatform.isWindows, gdbm
|
|
|
|
|
, withReadline ? !stdenv.hostPlatform.isWindows, readline
|
|
|
|
|
, x11Support ? false, tcl, tk, tix, libX11, xorgproto
|
|
|
|
|
|
|
|
|
|
# splicing/cross
|
|
|
|
|
, pythonAttr ? "python${sourceVersion.major}${sourceVersion.minor}"
|
|
|
|
|
, self
|
2020-11-21 19:51:51 +00:00
|
|
|
|
, pkgsBuildBuild
|
2020-11-30 08:33:03 +00:00
|
|
|
|
, pkgsBuildHost
|
2020-11-21 19:51:51 +00:00
|
|
|
|
, pkgsBuildTarget
|
|
|
|
|
, pkgsHostHost
|
|
|
|
|
, pkgsTargetTarget
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
|
|
# build customization
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, sourceVersion
|
2023-03-04 12:14:45 +00:00
|
|
|
|
, hash
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, passthruFun
|
|
|
|
|
, stripConfig ? false
|
|
|
|
|
, stripIdlelib ? false
|
|
|
|
|
, stripTests ? false
|
|
|
|
|
, stripTkinter ? false
|
|
|
|
|
, rebuildBytecode ? true
|
2021-09-18 10:52:07 +00:00
|
|
|
|
, stripBytecode ? true
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, includeSiteCustomize ? true
|
2021-01-05 17:05:55 +00:00
|
|
|
|
, static ? stdenv.hostPlatform.isStatic
|
2023-03-04 12:14:45 +00:00
|
|
|
|
, enableFramework ? false
|
2024-02-29 20:09:43 +00:00
|
|
|
|
, noldconfigPatch ? ./. + "/${sourceVersion.major}.${sourceVersion.minor}/no-ldconfig.patch"
|
2024-04-21 15:54:59 +00:00
|
|
|
|
, enableGIL ? true
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
|
|
# pgo (not reproducible) + -fno-semantic-interposition
|
|
|
|
|
# https://docs.python.org/3/using/configure.html#cmdoption-enable-optimizations
|
2021-04-05 15:23:46 +00:00
|
|
|
|
, enableOptimizations ? false
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
|
|
# improves performance, but remains reproducible
|
|
|
|
|
, enableNoSemanticInterposition ? true
|
|
|
|
|
|
2021-07-21 07:28:18 +00:00
|
|
|
|
# enabling LTO on 32bit arch causes downstream packages to fail when linking
|
2024-09-26 11:04:55 +00:00
|
|
|
|
, enableLTO ? stdenv.hostPlatform.isDarwin || (stdenv.hostPlatform.is64bit && stdenv.hostPlatform.isLinux)
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
|
|
# enable asserts to ensure the build remains reproducible
|
2021-09-18 10:52:07 +00:00
|
|
|
|
, reproducibleBuild ? false
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
|
|
# for the Python package set
|
|
|
|
|
, packageOverrides ? (self: super: {})
|
|
|
|
|
|
|
|
|
|
# tests
|
2023-10-19 13:55:26 +00:00
|
|
|
|
, testers
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
|
} @ inputs:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2020-08-20 17:08:02 +00: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.
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
assert x11Support -> tcl != null
|
|
|
|
|
&& tk != null
|
|
|
|
|
&& xorgproto != null
|
|
|
|
|
&& libX11 != null;
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
|
|
assert bluezSupport -> bluez != null;
|
|
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
|
assert lib.assertMsg (enableFramework -> stdenv.hostPlatform.isDarwin)
|
2024-02-29 20:09:43 +00:00
|
|
|
|
"Framework builds are only supported on Darwin.";
|
2023-03-04 12:14:45 +00:00
|
|
|
|
|
2021-04-05 15:23:46 +00:00
|
|
|
|
assert lib.assertMsg (reproducibleBuild -> stripBytecode)
|
|
|
|
|
"Deterministic builds require stripping bytecode.";
|
|
|
|
|
|
|
|
|
|
assert lib.assertMsg (reproducibleBuild -> (!enableOptimizations))
|
|
|
|
|
"Deterministic builds are not achieved when optimizations are enabled.";
|
|
|
|
|
|
2021-09-18 10:52:07 +00:00
|
|
|
|
assert lib.assertMsg (reproducibleBuild -> (!rebuildBytecode))
|
|
|
|
|
"Deterministic builds are not achieved when (default unoptimized) bytecode is created.";
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
let
|
2024-02-29 20:09:43 +00:00
|
|
|
|
inherit (lib)
|
|
|
|
|
concatMapStringsSep
|
|
|
|
|
concatStringsSep
|
2024-04-21 15:54:59 +00:00
|
|
|
|
enableFeature
|
2024-02-29 20:09:43 +00:00
|
|
|
|
getDev
|
|
|
|
|
getLib
|
|
|
|
|
optionals
|
|
|
|
|
optionalString
|
|
|
|
|
replaceStrings
|
|
|
|
|
versionOlder
|
|
|
|
|
;
|
2022-12-17 10:02:37 +00:00
|
|
|
|
|
2024-06-20 14:57:18 +00:00
|
|
|
|
# mixes libc and libxcrypt headers and libs and causes segfaults on importing crypt
|
|
|
|
|
libxcrypt = if stdenv.hostPlatform.isFreeBSD then null else inputs.libxcrypt;
|
|
|
|
|
|
2020-11-30 08:33:03 +00:00
|
|
|
|
buildPackages = pkgsBuildHost;
|
2023-11-16 04:20:00 +00:00
|
|
|
|
inherit (passthru) pythonOnBuildForHost;
|
2020-11-21 19:51:51 +00:00
|
|
|
|
|
2021-04-05 15:23:46 +00:00
|
|
|
|
tzdataSupport = tzdata != null && passthru.pythonAtLeast "3.9";
|
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
|
passthru = let
|
|
|
|
|
# When we override the interpreter we also need to override the spliced versions of the interpreter
|
2024-09-19 14:19:46 +00:00
|
|
|
|
# bluez is excluded manually to break an infinite recursion.
|
|
|
|
|
inputs' = lib.filterAttrs (n: v: n != "bluez" && n != "passthruFun" && ! lib.isDerivation v) inputs;
|
2022-04-27 09:35:20 +00:00
|
|
|
|
override = attr: let python = attr.override (inputs' // { self = python; }); in python;
|
|
|
|
|
in passthruFun rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
inherit self sourceVersion packageOverrides;
|
|
|
|
|
implementation = "cpython";
|
2024-09-19 14:19:46 +00:00
|
|
|
|
libPrefix = "python${pythonVersion}${lib.optionalString (!enableGIL) "t"}";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
executable = libPrefix;
|
|
|
|
|
pythonVersion = with sourceVersion; "${major}.${minor}";
|
|
|
|
|
sitePackages = "lib/${libPrefix}/site-packages";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
inherit hasDistutilsCxxPatch pythonAttr;
|
2022-04-27 09:35:20 +00:00
|
|
|
|
pythonOnBuildForBuild = override pkgsBuildBuild.${pythonAttr};
|
|
|
|
|
pythonOnBuildForHost = override pkgsBuildHost.${pythonAttr};
|
|
|
|
|
pythonOnBuildForTarget = override pkgsBuildTarget.${pythonAttr};
|
|
|
|
|
pythonOnHostForHost = override pkgsHostHost.${pythonAttr};
|
2023-07-15 17:15:38 +00:00
|
|
|
|
pythonOnTargetForTarget = lib.optionalAttrs (lib.hasAttr pythonAttr pkgsTargetTarget) (override pkgsTargetTarget.${pythonAttr});
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
version = with sourceVersion; "${major}.${minor}.${patch}${suffix}";
|
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
nukeReferences
|
2024-09-26 11:04:55 +00:00
|
|
|
|
] ++ optionals (!stdenv.hostPlatform.isDarwin) [
|
2024-02-29 20:09:43 +00:00
|
|
|
|
autoconf-archive # needed for AX_CHECK_COMPILE_FLAG
|
2020-06-18 07:06:33 +00:00
|
|
|
|
autoreconfHook
|
2022-02-10 20:34:41 +00:00
|
|
|
|
pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
|
] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
|
buildPackages.stdenv.cc
|
2023-11-16 04:20:00 +00:00
|
|
|
|
pythonOnBuildForHost
|
2022-09-30 11:47:45 +00:00
|
|
|
|
] ++ optionals (stdenv.cc.isClang && (!stdenv.hostPlatform.useAndroidPrebuilt or false) && (enableLTO || enableOptimizations)) [
|
2021-07-21 07:28:18 +00:00
|
|
|
|
stdenv.cc.cc.libllvm.out
|
2020-04-24 23:36:52 +00:00
|
|
|
|
];
|
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
|
buildInputs = lib.filter (p: p != null) ([
|
|
|
|
|
bzip2
|
|
|
|
|
expat
|
|
|
|
|
libffi
|
|
|
|
|
libxcrypt
|
|
|
|
|
mpdecimal
|
|
|
|
|
ncurses
|
|
|
|
|
openssl
|
|
|
|
|
sqlite
|
|
|
|
|
xz
|
|
|
|
|
zlib
|
|
|
|
|
] ++ optionals bluezSupport [
|
|
|
|
|
bluez
|
|
|
|
|
] ++ optionals enableFramework [
|
|
|
|
|
darwin.apple_sdk.frameworks.Cocoa
|
|
|
|
|
] ++ optionals stdenv.hostPlatform.isMinGW [
|
|
|
|
|
windows.dlfcn
|
|
|
|
|
windows.mingw_w64_pthreads
|
2024-09-26 11:04:55 +00:00
|
|
|
|
] ++ optionals stdenv.hostPlatform.isDarwin [
|
2024-02-29 20:09:43 +00:00
|
|
|
|
configd
|
|
|
|
|
] ++ optionals tzdataSupport [
|
|
|
|
|
tzdata
|
|
|
|
|
] ++ optionals withGdbm [
|
|
|
|
|
gdbm
|
|
|
|
|
] ++ optionals withReadline [
|
|
|
|
|
readline
|
|
|
|
|
] ++ optionals x11Support [
|
|
|
|
|
libX11
|
|
|
|
|
tcl
|
|
|
|
|
tk
|
|
|
|
|
xorgproto
|
|
|
|
|
]);
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
hasDistutilsCxxPatch = !(stdenv.cc.isGNU or false);
|
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
|
pythonOnBuildForHostInterpreter = if stdenv.hostPlatform == stdenv.buildPlatform then
|
2020-04-24 23:36:52 +00:00
|
|
|
|
"$out/bin/python"
|
2023-11-16 04:20:00 +00:00
|
|
|
|
else pythonOnBuildForHost.interpreter;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = with sourceVersion; "https://www.python.org/ftp/python/${major}.${minor}.${patch}/Python-${version}.tar.xz";
|
|
|
|
|
inherit hash;
|
|
|
|
|
};
|
|
|
|
|
|
2024-10-11 05:15:48 +00:00
|
|
|
|
# win32 is added by Fedora’s patch
|
|
|
|
|
machdep = if stdenv.hostPlatform.isWindows then
|
|
|
|
|
"win32"
|
|
|
|
|
else
|
|
|
|
|
stdenv.hostPlatform.parsed.kernel.name;
|
|
|
|
|
|
|
|
|
|
# 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 = let
|
|
|
|
|
cpu = {
|
|
|
|
|
# According to PEP600, Python's name for the Power PC
|
|
|
|
|
# architecture is "ppc", not "powerpc". Without the Rosetta
|
|
|
|
|
# Stone below, the PEP600 requirement that "${ARCH} matches
|
|
|
|
|
# the return value from distutils.util.get_platform()" fails.
|
|
|
|
|
# https://peps.python.org/pep-0600/
|
|
|
|
|
powerpc = "ppc";
|
|
|
|
|
powerpcle = "ppcle";
|
|
|
|
|
powerpc64 = "ppc64";
|
|
|
|
|
powerpc64le = "ppc64le";
|
|
|
|
|
}.${stdenv.hostPlatform.parsed.cpu.name} or stdenv.hostPlatform.parsed.cpu.name;
|
|
|
|
|
in "${machdep}-${cpu}";
|
2021-01-15 22:18:51 +00:00
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
|
execSuffix = stdenv.hostPlatform.extensions.executable;
|
2023-10-19 13:55:26 +00:00
|
|
|
|
in with passthru; stdenv.mkDerivation (finalAttrs: {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
pname = "python3";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
inherit src version;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
|
inherit nativeBuildInputs;
|
2024-02-29 20:09:43 +00:00
|
|
|
|
buildInputs = lib.optionals (!stdenv.hostPlatform.isWindows) [
|
|
|
|
|
bash # only required for patchShebangs
|
|
|
|
|
] ++ buildInputs;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
|
prePatch = optionalString stdenv.hostPlatform.isDarwin ''
|
2024-02-29 20:09:43 +00:00
|
|
|
|
substituteInPlace configure --replace-fail '`/usr/bin/arch`' '"i386"'
|
2024-09-26 11:04:55 +00:00
|
|
|
|
'' + optionalString (pythonOlder "3.9" && stdenv.hostPlatform.isDarwin && x11Support) ''
|
2022-01-13 20:06:32 +00:00
|
|
|
|
# Broken on >= 3.9; replaced with ./3.9/darwin-tcl-tk.patch
|
2024-02-29 20:09:43 +00:00
|
|
|
|
substituteInPlace setup.py --replace-fail /Library/Frameworks /no-such-path
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
|
patches = [
|
2020-04-24 23:36:52 +00: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).
|
2023-07-15 17:15:38 +00:00
|
|
|
|
noldconfigPatch
|
2024-09-26 11:04:55 +00:00
|
|
|
|
] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.isFreeBSD) [
|
2024-06-20 14:57:18 +00:00
|
|
|
|
# Cross compilation only supports a limited number of "known good"
|
|
|
|
|
# configurations. If you're reading this and it's been a long time
|
|
|
|
|
# since this diff, consider submitting this patch upstream!
|
|
|
|
|
./freebsd-cross.patch
|
|
|
|
|
] ++ optionals (pythonOlder "3.13") [
|
2021-07-21 07:28:18 +00:00
|
|
|
|
# Make sure that the virtualenv activation scripts are
|
|
|
|
|
# owner-writable, so venvs can be recreated without permission
|
|
|
|
|
# errors.
|
|
|
|
|
./virtualenv-permissions.patch
|
2024-04-21 15:54:59 +00:00
|
|
|
|
] ++ optionals (pythonAtLeast "3.13") [
|
|
|
|
|
./3.13/virtualenv-permissions.patch
|
2021-04-05 15:23:46 +00:00
|
|
|
|
] ++ optionals mimetypesSupport [
|
|
|
|
|
# Make the mimetypes module refer to the right file
|
|
|
|
|
./mimetypes.patch
|
2022-06-16 17:23:12 +00:00
|
|
|
|
] ++ optionals (pythonAtLeast "3.7" && pythonOlder "3.11") [
|
2020-04-24 23:36:52 +00:00
|
|
|
|
# Fix darwin build https://bugs.python.org/issue34027
|
|
|
|
|
./3.7/darwin-libutil.patch
|
2022-06-16 17:23:12 +00:00
|
|
|
|
] ++ optionals (pythonAtLeast "3.11") [
|
|
|
|
|
./3.11/darwin-libutil.patch
|
2024-09-26 11:04:55 +00:00
|
|
|
|
] ++ optionals (pythonAtLeast "3.9" && pythonOlder "3.11" && stdenv.hostPlatform.isDarwin) [
|
2021-09-18 10:52:07 +00:00
|
|
|
|
# Stop checking for TCL/TK in global macOS locations
|
|
|
|
|
./3.9/darwin-tcl-tk.patch
|
2024-02-29 20:09:43 +00:00
|
|
|
|
] ++ optionals (hasDistutilsCxxPatch && pythonOlder "3.12") [
|
2020-04-24 23:36:52 +00: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.
|
|
|
|
|
(
|
2022-12-17 10:02:37 +00:00
|
|
|
|
if pythonAtLeast "3.7" && pythonOlder "3.11" then
|
2020-04-24 23:36:52 +00:00
|
|
|
|
./3.7/python-3.x-distutils-C++.patch
|
2022-04-15 01:41:22 +00:00
|
|
|
|
else if pythonAtLeast "3.11" then
|
|
|
|
|
./3.11/python-3.x-distutils-C++.patch
|
2020-04-24 23:36:52 +00:00
|
|
|
|
else
|
|
|
|
|
fetchpatch {
|
|
|
|
|
url = "https://bugs.python.org/file48016/python-3.x-distutils-C++.patch";
|
|
|
|
|
sha256 = "1h18lnpx539h5lfxyk379dxwr8m2raigcjixkf133l4xy3f4bzi2";
|
|
|
|
|
}
|
|
|
|
|
)
|
2023-07-15 17:15:38 +00:00
|
|
|
|
] ++ optionals (pythonAtLeast "3.7" && pythonOlder "3.12") [
|
2020-07-18 16:06:22 +00: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
|
2021-01-15 22:18:51 +00:00
|
|
|
|
# Use sysconfigdata to find headers. Fixes cross-compilation of extension modules.
|
2022-12-17 10:02:37 +00:00
|
|
|
|
./3.7/fix-finding-headers-when-cross-compiling.patch
|
2023-11-16 04:20:00 +00:00
|
|
|
|
] ++ optionals (pythonOlder "3.12") [
|
2023-05-24 13:37:59 +00:00
|
|
|
|
# https://github.com/python/cpython/issues/90656
|
|
|
|
|
./loongarch-support.patch
|
2023-11-16 04:20:00 +00:00
|
|
|
|
] ++ optionals (pythonAtLeast "3.11" && pythonOlder "3.13") [
|
|
|
|
|
# backport fix for https://github.com/python/cpython/issues/95855
|
|
|
|
|
./platform-triplet-detection.patch
|
2023-10-09 19:29:22 +00:00
|
|
|
|
] ++ optionals (stdenv.hostPlatform.isMinGW) (let
|
|
|
|
|
# https://src.fedoraproject.org/rpms/mingw-python3
|
|
|
|
|
mingw-patch = fetchgit {
|
|
|
|
|
name = "mingw-python-patches";
|
|
|
|
|
url = "https://src.fedoraproject.org/rpms/mingw-python3.git";
|
|
|
|
|
rev = "45c45833ab9e5480ad0ae00778a05ebf35812ed4"; # for python 3.11.5 at the time of writing.
|
|
|
|
|
sha256 = "sha256-KIyNvO6MlYTrmSy9V/DbzXm5OsIuyT/BEpuo7Umm9DI=";
|
|
|
|
|
};
|
|
|
|
|
in [
|
|
|
|
|
"${mingw-patch}/*.patch"
|
2024-09-19 14:19:46 +00:00
|
|
|
|
]);
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
|
postPatch = optionalString (!stdenv.hostPlatform.isWindows) ''
|
2020-09-25 04:45:31 +00:00
|
|
|
|
substituteInPlace Lib/subprocess.py \
|
2024-02-29 20:09:43 +00:00
|
|
|
|
--replace-fail "'/bin/sh'" "'${bash}/bin/sh'"
|
2021-04-05 15:23:46 +00:00
|
|
|
|
'' + optionalString mimetypesSupport ''
|
|
|
|
|
substituteInPlace Lib/mimetypes.py \
|
2024-02-29 20:09:43 +00:00
|
|
|
|
--replace-fail "@mime-types@" "${mailcap}"
|
2023-10-19 13:55:26 +00:00
|
|
|
|
'' + optionalString (pythonOlder "3.13" && x11Support && (tix != null)) ''
|
2024-02-29 20:09:43 +00:00
|
|
|
|
substituteInPlace "Lib/tkinter/tix.py" --replace-fail \
|
|
|
|
|
"os.environ.get('TIX_LIBRARY')" \
|
|
|
|
|
"os.environ.get('TIX_LIBRARY') or '${tix}/lib'"
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
|
env = {
|
|
|
|
|
CPPFLAGS = concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs);
|
|
|
|
|
LDFLAGS = concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs);
|
2024-09-26 11:04:55 +00:00
|
|
|
|
LIBS = "${optionalString (!stdenv.hostPlatform.isDarwin) "-lcrypt"}";
|
2023-01-20 10:41:00 +00:00
|
|
|
|
NIX_LDFLAGS = lib.optionalString (stdenv.cc.isGNU && !stdenv.hostPlatform.isStatic) ({
|
|
|
|
|
"glibc" = "-lgcc_s";
|
|
|
|
|
"musl" = "-lgcc_eh";
|
|
|
|
|
}."${stdenv.hostPlatform.libc}" or "");
|
|
|
|
|
# Determinism: We fix the hashes of str, bytes and datetime objects.
|
|
|
|
|
PYTHONHASHSEED=0;
|
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
|
# https://docs.python.org/3/using/configure.html
|
2020-04-24 23:36:52 +00:00
|
|
|
|
configureFlags = [
|
|
|
|
|
"--without-ensurepip"
|
|
|
|
|
"--with-system-expat"
|
2024-02-29 20:09:43 +00:00
|
|
|
|
"--with-system-libmpdec"
|
|
|
|
|
] ++ optionals (openssl != null) [
|
|
|
|
|
"--with-openssl=${openssl.dev}"
|
|
|
|
|
] ++ optionals tzdataSupport [
|
|
|
|
|
"--with-tzpath=${tzdata}/share/zoneinfo"
|
|
|
|
|
] ++ optionals (execSuffix != "") [
|
|
|
|
|
"--with-suffix=${execSuffix}"
|
|
|
|
|
] ++ optionals enableLTO [
|
|
|
|
|
"--with-lto"
|
2023-03-04 12:14:45 +00:00
|
|
|
|
] ++ optionals (!static && !enableFramework) [
|
2021-09-18 10:52:07 +00:00
|
|
|
|
"--enable-shared"
|
2023-03-04 12:14:45 +00:00
|
|
|
|
] ++ optionals enableFramework [
|
|
|
|
|
"--enable-framework=${placeholder "out"}/Library/Frameworks"
|
2024-04-21 15:54:59 +00:00
|
|
|
|
] ++ optionals (pythonAtLeast "3.13") [
|
|
|
|
|
(enableFeature enableGIL "gil")
|
2020-06-18 07:06:33 +00:00
|
|
|
|
] ++ optionals enableOptimizations [
|
|
|
|
|
"--enable-optimizations"
|
2024-09-26 11:04:55 +00:00
|
|
|
|
] ++ optionals (stdenv.hostPlatform.isDarwin && configd == null) [
|
2024-07-27 06:49:29 +00:00
|
|
|
|
# Make conditional on Darwin for now to avoid causing Linux rebuilds.
|
|
|
|
|
"py_cv_module__scproxy=n/a"
|
2024-02-29 20:09:43 +00:00
|
|
|
|
] ++ optionals (sqlite != null) [
|
2020-04-24 23:36:52 +00:00
|
|
|
|
"--enable-loadable-sqlite-extensions"
|
2022-12-17 10:02:37 +00:00
|
|
|
|
] ++ optionals (libxcrypt != null) [
|
|
|
|
|
"CFLAGS=-I${libxcrypt}/include"
|
|
|
|
|
"LIBS=-L${libxcrypt}/lib"
|
2020-04-24 23:36:52 +00: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"
|
2023-10-09 19:29:22 +00:00
|
|
|
|
# Both fail when building for windows, normally configure checks this by itself but on other platforms this is set to yes always.
|
|
|
|
|
"ac_cv_file__dev_ptmx=${if stdenv.hostPlatform.isWindows then "no" else "yes"}"
|
|
|
|
|
"ac_cv_file__dev_ptc=${if stdenv.hostPlatform.isWindows then "no" else "yes"}"
|
2023-02-09 11:40:11 +00:00
|
|
|
|
] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform && pythonAtLeast "3.11") [
|
2023-11-16 04:20:00 +00:00
|
|
|
|
"--with-build-python=${pythonOnBuildForHostInterpreter}"
|
2020-04-24 23:36:52 +00: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"
|
2024-02-29 20:09:43 +00:00
|
|
|
|
] ++ optionals static [
|
|
|
|
|
"LDFLAGS=-static"
|
2024-09-19 14:19:46 +00:00
|
|
|
|
"MODULE_BUILDTYPE=static"
|
|
|
|
|
] ++ optionals (stdenv.hostPlatform.isStatic && stdenv.hostPlatform.isMusl) [
|
|
|
|
|
# dlopen is a no-op in static musl builds, and since we build everything without -fPIC it's better not to pretend.
|
|
|
|
|
"ac_cv_func_dlopen=no"
|
2024-02-29 20:09:43 +00:00
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2024-06-20 14:57:18 +00:00
|
|
|
|
preConfigure = ''
|
|
|
|
|
# Attempt to purify some of the host info collection
|
|
|
|
|
sed -E -i -e 's/uname -r/echo/g' -e 's/uname -n/echo nixpkgs/g' config.guess
|
|
|
|
|
sed -E -i -e 's/uname -r/echo/g' -e 's/uname -n/echo nixpkgs/g' configure
|
|
|
|
|
'' + optionalString (pythonOlder "3.12") ''
|
2024-02-29 20:09:43 +00:00
|
|
|
|
# Improve purity
|
|
|
|
|
for path in /usr /sw /opt /pkg; do
|
|
|
|
|
substituteInPlace ./setup.py --replace-warn $path /no-such-path
|
2020-04-24 23:36:52 +00:00
|
|
|
|
done
|
2024-09-26 11:04:55 +00:00
|
|
|
|
'' + optionalString stdenv.hostPlatform.isDarwin ''
|
2021-09-18 10:52:07 +00:00
|
|
|
|
# Override the auto-detection in setup.py, which assumes a universal build
|
2024-09-26 11:04:55 +00:00
|
|
|
|
export PYTHON_DECIMAL_WITH_MACHINE=${if stdenv.hostPlatform.isAarch64 then "uint128" else "x64"}
|
2024-06-20 14:57:18 +00:00
|
|
|
|
# Ensure that modern platform features are enabled on Darwin in spite of having no version suffix.
|
|
|
|
|
sed -E -i -e 's|Darwin/\[12\]\[0-9\]\.\*|Darwin/*|' configure
|
2024-07-31 10:19:44 +00:00
|
|
|
|
'' + optionalString (pythonAtLeast "3.11") ''
|
|
|
|
|
# Also override the auto-detection in `configure`.
|
|
|
|
|
substituteInPlace configure \
|
2024-09-26 11:04:55 +00:00
|
|
|
|
--replace-fail 'libmpdec_machine=universal' 'libmpdec_machine=${if stdenv.hostPlatform.isAarch64 then "uint128" else "x64"}'
|
|
|
|
|
'' + optionalString (stdenv.hostPlatform.isDarwin && x11Support && pythonAtLeast "3.11") ''
|
2023-07-15 17:15:38 +00:00
|
|
|
|
export TCLTK_LIBS="-L${tcl}/lib -L${tk}/lib -l${tcl.libPrefix} -l${tk.libPrefix}"
|
|
|
|
|
export TCLTK_CFLAGS="-I${tcl}/include -I${tk}/include"
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'' + optionalString stdenv.hostPlatform.isMusl ''
|
|
|
|
|
export NIX_CFLAGS_COMPILE+=" -DTHREAD_STACK_SIZE=0x100000"
|
2021-07-21 07:28:18 +00:00
|
|
|
|
'' +
|
|
|
|
|
|
|
|
|
|
# enableNoSemanticInterposition essentially sets that CFLAG -fno-semantic-interposition
|
|
|
|
|
# which changes how symbols are looked up. This essentially means we can't override
|
|
|
|
|
# libpython symbols via LD_PRELOAD anymore. This is common enough as every build
|
|
|
|
|
# that uses --enable-optimizations has the same "issue".
|
|
|
|
|
#
|
|
|
|
|
# The Fedora wiki has a good article about their journey towards enabling this flag:
|
|
|
|
|
# https://fedoraproject.org/wiki/Changes/PythonNoSemanticInterpositionSpeedup
|
|
|
|
|
optionalString enableNoSemanticInterposition ''
|
|
|
|
|
export CFLAGS_NODIST="-fno-semantic-interposition"
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
setupHook = python-setup-hook sitePackages;
|
|
|
|
|
|
2021-04-05 15:23:46 +00:00
|
|
|
|
postInstall = let
|
|
|
|
|
# References *not* to nuke from (sys)config files
|
|
|
|
|
keep-references = concatMapStringsSep " " (val: "-e ${val}") ([
|
2024-06-20 14:57:18 +00:00
|
|
|
|
(placeholder "out")
|
|
|
|
|
] ++ lib.optional (libxcrypt != null) libxcrypt
|
|
|
|
|
++ lib.optional tzdataSupport tzdata
|
|
|
|
|
);
|
2023-03-04 12:14:45 +00:00
|
|
|
|
in lib.optionalString enableFramework ''
|
|
|
|
|
for dir in include lib share; do
|
|
|
|
|
ln -s $out/Library/Frameworks/Python.framework/Versions/Current/$dir $out/$dir
|
|
|
|
|
done
|
|
|
|
|
'' + ''
|
2020-04-24 23:36:52 +00:00
|
|
|
|
# needed for some packages, especially packages that backport functionality
|
|
|
|
|
# to 2.x from 3.x
|
|
|
|
|
for item in $out/lib/${libPrefix}/test/*; do
|
|
|
|
|
if [[ "$item" != */test_support.py*
|
|
|
|
|
&& "$item" != */test/support
|
|
|
|
|
&& "$item" != */test/libregrtest
|
|
|
|
|
&& "$item" != */test/regrtest.py* ]]; then
|
|
|
|
|
rm -rf "$item"
|
|
|
|
|
else
|
|
|
|
|
echo $item
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
touch $out/lib/${libPrefix}/test/__init__.py
|
|
|
|
|
|
|
|
|
|
# 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"
|
2023-10-09 19:29:22 +00:00
|
|
|
|
ln -s "$out/bin/python3${execSuffix}" "$out/bin/python${execSuffix}"
|
2020-04-24 23:36:52 +00:00
|
|
|
|
ln -s "$out/bin/python3-config" "$out/bin/python-config"
|
|
|
|
|
ln -s "$out/lib/pkgconfig/python3.pc" "$out/lib/pkgconfig/python.pc"
|
2023-08-10 07:59:29 +00:00
|
|
|
|
ln -sL "$out/share/man/man1/python3.1.gz" "$out/share/man/man1/python.1.gz"
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
# 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!
|
|
|
|
|
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"
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
# Further get rid of references. https://github.com/NixOS/nixpkgs/issues/51668
|
2021-04-05 15:23:46 +00:00
|
|
|
|
find $out/lib/python*/config-* -type f -print -exec nuke-refs ${keep-references} '{}' +
|
|
|
|
|
find $out/lib -name '_sysconfigdata*.py*' -print -exec nuke-refs ${keep-references} '{}' +
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2021-01-15 22:18:51 +00: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}/"
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'' + optionalString stripConfig ''
|
|
|
|
|
rm -R $out/bin/python*-config $out/lib/python*/config-*
|
|
|
|
|
'' + optionalString stripIdlelib ''
|
|
|
|
|
# Strip IDLE (and turtledemo, which uses it)
|
|
|
|
|
rm -R $out/bin/idle* $out/lib/python*/{idlelib,turtledemo}
|
|
|
|
|
'' + optionalString stripTkinter ''
|
|
|
|
|
rm -R $out/lib/python*/tkinter
|
|
|
|
|
'' + optionalString stripTests ''
|
|
|
|
|
# Strip tests
|
|
|
|
|
rm -R $out/lib/python*/test $out/lib/python*/**/test{,s}
|
|
|
|
|
'' + optionalString includeSiteCustomize ''
|
|
|
|
|
# Include a sitecustomize.py file
|
|
|
|
|
cp ${../sitecustomize.py} $out/${sitePackages}/sitecustomize.py
|
2021-04-05 15:23:46 +00:00
|
|
|
|
'' + optionalString stripBytecode ''
|
|
|
|
|
# Determinism: deterministic bytecode
|
|
|
|
|
# First we delete all old bytecode.
|
|
|
|
|
find $out -type d -name __pycache__ -print0 | xargs -0 -I {} rm -rf "{}"
|
|
|
|
|
'' + optionalString rebuildBytecode ''
|
2020-04-24 23:36:52 +00:00
|
|
|
|
# Python 3.7 implements PEP 552, introducing support for deterministic bytecode.
|
2021-09-18 10:52:07 +00:00
|
|
|
|
# compileall uses the therein introduced checked-hash method by default when
|
|
|
|
|
# `SOURCE_DATE_EPOCH` is set.
|
2021-04-05 15:23:46 +00:00
|
|
|
|
# We exclude lib2to3 because that's Python 2 code which fails
|
2021-09-18 10:52:07 +00:00
|
|
|
|
# We build 3 levels of optimized bytecode. Note the default level, without optimizations,
|
|
|
|
|
# is not reproducible yet. https://bugs.python.org/issue29708
|
|
|
|
|
# Not creating bytecode will result in a large performance loss however, so we do build it.
|
2023-11-16 04:20:00 +00:00
|
|
|
|
find $out -name "*.py" | ${pythonOnBuildForHostInterpreter} -m compileall -q -f -x "lib2to3" -i -
|
|
|
|
|
find $out -name "*.py" | ${pythonOnBuildForHostInterpreter} -O -m compileall -q -f -x "lib2to3" -i -
|
|
|
|
|
find $out -name "*.py" | ${pythonOnBuildForHostInterpreter} -OO -m compileall -q -f -x "lib2to3" -i -
|
2021-09-26 12:46:18 +00:00
|
|
|
|
'' + ''
|
|
|
|
|
# *strip* shebang from libpython gdb script - it should be dual-syntax and
|
|
|
|
|
# interpretable by whatever python the gdb in question is using, which may
|
|
|
|
|
# not even match the major version of this python. doing this after the
|
|
|
|
|
# bytecode compilations for the same reason - we don't want bytecode generated.
|
|
|
|
|
mkdir -p $out/share/gdb
|
|
|
|
|
sed '/^#!/d' Tools/gdb/libpython.py > $out/share/gdb/libpython.py
|
2023-05-24 13:37:59 +00:00
|
|
|
|
|
|
|
|
|
# Disable system-wide pip installation. See https://peps.python.org/pep-0668/.
|
|
|
|
|
cat <<'EXTERNALLY_MANAGED' > $out/lib/${libPrefix}/EXTERNALLY-MANAGED
|
|
|
|
|
[externally-managed]
|
|
|
|
|
Error=This command has been disabled as it tries to modify the immutable
|
|
|
|
|
`/nix/store` filesystem.
|
|
|
|
|
|
|
|
|
|
To use Python with Nix and nixpkgs, have a look at the online documentation:
|
|
|
|
|
<https://nixos.org/manual/nixpkgs/stable/#python>.
|
|
|
|
|
EXTERNALLY_MANAGED
|
2023-10-09 19:29:22 +00:00
|
|
|
|
'' + optionalString stdenv.hostPlatform.isWindows ''
|
|
|
|
|
# Shebang files that link against the build python. Shebang don’t work on windows
|
|
|
|
|
rm $out/bin/2to3*
|
|
|
|
|
rm $out/bin/idle*
|
|
|
|
|
rm $out/bin/pydoc*
|
|
|
|
|
|
|
|
|
|
echo linking DLLs for python’s compiled librairies
|
|
|
|
|
linkDLLsInfolder $out/lib/python*/lib-dynload/
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
|
preFixup = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
2020-04-24 23:36:52 +00:00
|
|
|
|
# Ensure patch-shebangs uses shebangs of host interpreter.
|
2022-06-16 17:23:12 +00:00
|
|
|
|
export PATH=${lib.makeBinPath [ "$out" ]}:$PATH
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
# Add CPython specific setup-hook that configures distutils.sysconfig to
|
|
|
|
|
# always load sysconfigdata from host Python.
|
2021-02-05 17:12:51 +00:00
|
|
|
|
postFixup = lib.optionalString (!stdenv.hostPlatform.isDarwin) ''
|
2024-10-11 05:15:48 +00:00
|
|
|
|
# https://github.com/python/cpython/blob/e488e300f5c01289c10906c2e53a8e43d6de32d8/configure.ac#L78
|
|
|
|
|
sysconfigdataName="$(make --eval $'print-sysconfigdata-name:
|
|
|
|
|
\t@echo _sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH) ' print-sysconfigdata-name)"
|
|
|
|
|
|
|
|
|
|
# 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).
|
|
|
|
|
cat <<EOF >> "$out/nix-support/setup-hook"
|
|
|
|
|
sysconfigdataHook() {
|
|
|
|
|
if [ "\$1" = '$out' ]; then
|
|
|
|
|
export _PYTHON_HOST_PLATFORM='${pythonHostPlatform}'
|
|
|
|
|
export _PYTHON_SYSCONFIGDATA_NAME='$sysconfigdataName'
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
addEnvHooks "\$hostOffset" sysconfigdataHook
|
2021-01-15 22:18:51 +00:00
|
|
|
|
EOF
|
|
|
|
|
'';
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
# Enforce that we don't have references to the OpenSSL -dev package, which we
|
|
|
|
|
# explicitly specify in our configure flags above.
|
2024-02-29 20:09:43 +00:00
|
|
|
|
disallowedReferences = lib.optionals (openssl != null && !static && !enableFramework) [
|
|
|
|
|
openssl.dev
|
|
|
|
|
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2020-04-24 23:36:52 +00:00
|
|
|
|
# Ensure we don't have references to build-time packages.
|
|
|
|
|
# These typically end up in shebangs.
|
2023-11-16 04:20:00 +00:00
|
|
|
|
pythonOnBuildForHost buildPackages.bash
|
2020-04-24 23:36:52 +00:00
|
|
|
|
];
|
|
|
|
|
|
2021-09-26 12:46:18 +00:00
|
|
|
|
separateDebugInfo = true;
|
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
|
passthru = passthru // {
|
|
|
|
|
doc = stdenv.mkDerivation {
|
|
|
|
|
inherit src;
|
|
|
|
|
name = "python${pythonVersion}-${version}-doc";
|
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
|
patches = optionals (pythonAtLeast "3.9" && pythonOlder "3.10") [
|
|
|
|
|
# https://github.com/python/cpython/issues/98366
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://github.com/python/cpython/commit/5612471501b05518287ed61c1abcb9ed38c03942.patch";
|
|
|
|
|
hash = "sha256-p41hJwAiyRgyVjCVQokMSpSFg/VDDrqkCSxsodVb6vY=";
|
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
|
|
sphinxRoot = "Doc";
|
|
|
|
|
|
|
|
|
|
postInstallSphinx = ''
|
|
|
|
|
mv $out/share/doc/* $out/share/doc/python${pythonVersion}-${version}
|
|
|
|
|
'';
|
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
|
nativeBuildInputs = with pkgsBuildBuild.python3.pkgs; [ sphinxHook python-docs-theme ];
|
2023-07-15 17:15:38 +00:00
|
|
|
|
};
|
2023-10-19 13:55:26 +00:00
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
|
tests = passthru.tests // {
|
|
|
|
|
pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
|
|
|
};
|
2023-07-15 17:15:38 +00:00
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
|
meta = with lib; {
|
2022-12-17 10:02:37 +00:00
|
|
|
|
homepage = "https://www.python.org";
|
|
|
|
|
changelog = let
|
2024-02-29 20:09:43 +00:00
|
|
|
|
majorMinor = versions.majorMinor version;
|
2024-07-01 15:47:52 +00:00
|
|
|
|
dashedVersion = replaceStrings [ "." "a" "b" ] [ "-" "-alpha-" "-beta-" ] version;
|
2022-12-17 10:02:37 +00:00
|
|
|
|
in
|
|
|
|
|
if sourceVersion.suffix == "" then
|
|
|
|
|
"https://docs.python.org/release/${version}/whatsnew/changelog.html"
|
|
|
|
|
else
|
|
|
|
|
"https://docs.python.org/${majorMinor}/whatsnew/changelog.html#python-${dashedVersion}";
|
2024-06-20 14:57:18 +00:00
|
|
|
|
description = "High-level dynamically-typed programming language";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
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;
|
2023-10-19 13:55:26 +00:00
|
|
|
|
pkgConfigModules = [ "python3" ];
|
2024-06-20 14:57:18 +00:00
|
|
|
|
platforms = platforms.linux ++ platforms.darwin ++ platforms.windows ++ platforms.freebsd;
|
2023-08-10 07:59:29 +00:00
|
|
|
|
mainProgram = executable;
|
2024-10-04 16:56:33 +00:00
|
|
|
|
maintainers = lib.teams.python.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
2023-10-19 13:55:26 +00:00
|
|
|
|
})
|