nixpkgs-suyu/pkgs/development/interpreters/python/cpython/default.nix

506 lines
21 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchpatch
2018-01-24 16:10:08 +01:00
, bzip2
, expat
, libffi
, gdbm
2021-03-14 19:12:53 +01:00
, xz
2021-03-14 13:00:44 +01:00
, mime-types ? null, mimetypesSupport ? true
2018-01-24 16:10:08 +01:00
, ncurses
, openssl
, readline
, sqlite
, tcl ? null, tk ? null, tix ? null, libX11 ? null, xorgproto ? null, x11Support ? false
, bluez ? null, bluezSupport ? false
2018-01-24 16:10:08 +01:00
, zlib
, tzdata ? null
2018-01-24 16:10:08 +01:00
, self
, configd
, autoreconfHook
2020-11-09 19:37:15 +01:00
, autoconf-archive
2018-01-24 16:10:08 +01:00
, python-setup-hook
, nukeReferences
2018-01-24 16:10:08 +01:00
# For the Python package set
, packageOverrides ? (self: super: {})
, pkgsBuildBuild
, pkgsBuildHost
, pkgsBuildTarget
, pkgsHostHost
, pkgsTargetTarget
, sourceVersion
, sha256
, passthruFun
, 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
, rebuildBytecode ? true
, stripBytecode ? true
, includeSiteCustomize ? true
, static ? stdenv.hostPlatform.isStatic
, enableOptimizations ? false
cpython: add enableNoSemanticInterposition flag This flags enables the -fno-semantic-interposition compiler flag for all our cpython builds by default. It can be disabled by overriding the enableNoSemanticInterposition attribute. This CFLAG has the impact that our python code runs up to 23% faster than previously. See the pyperformance benchmark results below. The only downside that exists is that we can no longer override libpython symbols via LD_PRELOAD when calling the python interpreter. If a user needs they can disable the newly introduced flag and use that instead. However those situations should be rare. The Fedora Project did the equivalent change in their Fedora 32 release (and haven't reverted it yet). They wrote a nice [wiki page] about the ups and downs of this change. I recommend reading that. Benchmark results of running Python 3.9 before and after this change: +-------------------------+---------------+--------------------+--------------+------------------------+ | Benchmark | py39.nix.json | py39-nsip.nix.json | Change | Significance | +=========================+===============+====================+==============+========================+ | 2to3 | 666 ms | 642 ms | 1.04x faster | Significant (t=12.73) | +-------------------------+---------------+--------------------+--------------+------------------------+ | chameleon | 15.0 ms | 14.6 ms | 1.03x faster | Significant (t=4.70) | +-------------------------+---------------+--------------------+--------------+------------------------+ | chaos | 198 ms | 182 ms | 1.09x faster | Significant (t=13.73) | +-------------------------+---------------+--------------------+--------------+------------------------+ | crypto_pyaes | 185 ms | 175 ms | 1.06x faster | Significant (t=9.70) | +-------------------------+---------------+--------------------+--------------+------------------------+ | deltablue | 12.3 ms | 11.2 ms | 1.10x faster | Significant (t=14.45) | +-------------------------+---------------+--------------------+--------------+------------------------+ | django_template | 85.1 ms | 82.0 ms | 1.04x faster | Significant (t=6.61) | +-------------------------+---------------+--------------------+--------------+------------------------+ | dulwich_log | 102 ms | 101 ms | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | fannkuch | 670 ms | 634 ms | 1.06x faster | Significant (t=15.87) | +-------------------------+---------------+--------------------+--------------+------------------------+ | float | 182 ms | 176 ms | 1.03x faster | Significant (t=7.32) | +-------------------------+---------------+--------------------+--------------+------------------------+ | go | 393 ms | 366 ms | 1.07x faster | Significant (t=17.63) | +-------------------------+---------------+--------------------+--------------+------------------------+ | hexiom | 15.8 ms | 14.9 ms | 1.06x faster | Significant (t=13.81) | +-------------------------+---------------+--------------------+--------------+------------------------+ | json_dumps | 19.3 ms | 18.7 ms | 1.03x faster | Significant (t=7.46) | +-------------------------+---------------+--------------------+--------------+------------------------+ | json_loads | 38.4 us | 37.9 us | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | logging_format | 15.0 us | 14.2 us | 1.05x faster | Significant (t=6.32) | +-------------------------+---------------+--------------------+--------------+------------------------+ | logging_silent | 328 ns | 305 ns | 1.07x faster | Significant (t=8.85) | +-------------------------+---------------+--------------------+--------------+------------------------+ | logging_simple | 13.8 us | 13.0 us | 1.06x faster | Significant (t=10.77) | +-------------------------+---------------+--------------------+--------------+------------------------+ | mako | 25.2 ms | 24.7 ms | 1.02x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | meteor_contest | 133 ms | 130 ms | 1.03x faster | Significant (t=3.59) | +-------------------------+---------------+--------------------+--------------+------------------------+ | nbody | 222 ms | 201 ms | 1.10x faster | Significant (t=26.85) | +-------------------------+---------------+--------------------+--------------+------------------------+ | nqueens | 161 ms | 152 ms | 1.06x faster | Significant (t=8.84) | +-------------------------+---------------+--------------------+--------------+------------------------+ | pathlib | 28.4 ms | 26.3 ms | 1.08x faster | Significant (t=11.85) | +-------------------------+---------------+--------------------+--------------+------------------------+ | pickle | 13.8 us | 13.1 us | 1.06x faster | Significant (t=10.84) | +-------------------------+---------------+--------------------+--------------+------------------------+ | pickle_dict | 32.7 us | 26.6 us | 1.23x faster | Significant (t=32.43) | +-------------------------+---------------+--------------------+--------------+------------------------+ | pickle_list | 4.39 us | 4.34 us | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | pickle_pure_python | 782 us | 738 us | 1.06x faster | Significant (t=15.71) | +-------------------------+---------------+--------------------+--------------+------------------------+ | pidigits | 184 ms | 181 ms | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | pyflate | 1.02 sec | 959 ms | 1.07x faster | Significant (t=21.13) | +-------------------------+---------------+--------------------+--------------+------------------------+ | python_startup | 34.3 ms | 34.0 ms | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | python_startup_no_site | 15.5 ms | 15.3 ms | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | raytrace | 912 ms | 849 ms | 1.07x faster | Significant (t=11.21) | +-------------------------+---------------+--------------------+--------------+------------------------+ | regex_compile | 273 ms | 261 ms | 1.05x faster | Significant (t=5.82) | +-------------------------+---------------+--------------------+--------------+------------------------+ | regex_dna | 188 ms | 187 ms | 1.00x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | regex_effbot | 3.37 ms | 3.66 ms | 1.09x slower | Significant (t=-16.12) | +-------------------------+---------------+--------------------+--------------+------------------------+ | regex_v8 | 29.8 ms | 29.7 ms | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | richards | 119 ms | 113 ms | 1.05x faster | Significant (t=5.71) | +-------------------------+---------------+--------------------+--------------+------------------------+ | scimark_fft | 625 ms | 592 ms | 1.06x faster | Significant (t=19.64) | +-------------------------+---------------+--------------------+--------------+------------------------+ | scimark_lu | 273 ms | 253 ms | 1.08x faster | Significant (t=16.68) | +-------------------------+---------------+--------------------+--------------+------------------------+ | scimark_monte_carlo | 186 ms | 170 ms | 1.10x faster | Significant (t=14.70) | +-------------------------+---------------+--------------------+--------------+------------------------+ | scimark_sor | 330 ms | 310 ms | 1.07x faster | Significant (t=11.89) | +-------------------------+---------------+--------------------+--------------+------------------------+ | scimark_sparse_mat_mult | 9.03 ms | 8.36 ms | 1.08x faster | Significant (t=17.71) | +-------------------------+---------------+--------------------+--------------+------------------------+ | spectral_norm | 247 ms | 232 ms | 1.06x faster | Significant (t=14.64) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sqlalchemy_declarative | 194 ms | 185 ms | 1.04x faster | Significant (t=4.80) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sqlalchemy_imperative | 28.2 ms | 27.4 ms | 1.03x faster | Significant (t=3.80) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sqlite_synth | 4.89 us | 4.73 us | 1.03x faster | Significant (t=10.60) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sympy_expand | 833 ms | 813 ms | 1.02x faster | Significant (t=4.82) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sympy_integrate | 33.0 ms | 31.6 ms | 1.05x faster | Significant (t=6.47) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sympy_str | 490 ms | 477 ms | 1.03x faster | Significant (t=7.58) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sympy_sum | 254 ms | 245 ms | 1.04x faster | Significant (t=7.82) | +-------------------------+---------------+--------------------+--------------+------------------------+ | telco | 11.6 ms | 11.3 ms | 1.03x faster | Significant (t=5.62) | +-------------------------+---------------+--------------------+--------------+------------------------+ | tornado_http | 175 ms | 172 ms | 1.02x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | unpack_sequence | 51.4 ns | 56.2 ns | 1.09x slower | Significant (t=-2.40) | +-------------------------+---------------+--------------------+--------------+------------------------+ | unpickle | 20.3 us | 19.8 us | 1.02x faster | Significant (t=4.09) | +-------------------------+---------------+--------------------+--------------+------------------------+ | unpickle_list | 5.41 us | 5.75 us | 1.06x slower | Significant (t=-26.56) | +-------------------------+---------------+--------------------+--------------+------------------------+ | unpickle_pure_python | 544 us | 524 us | 1.04x faster | Significant (t=6.47) | +-------------------------+---------------+--------------------+--------------+------------------------+ | xml_etree_generate | 154 ms | 148 ms | 1.04x faster | Significant (t=7.98) | +-------------------------+---------------+--------------------+--------------+------------------------+ | xml_etree_iterparse | 130 ms | 129 ms | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | xml_etree_parse | 178 ms | 179 ms | 1.00x slower | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | xml_etree_process | 123 ms | 118 ms | 1.04x faster | Significant (t=10.22) | +-------------------------+---------------+--------------------+--------------+------------------------+ [wiki page]: https://fedoraproject.org/wiki/Changes/PythonNoSemanticInterpositionSpeedup
2021-05-25 19:43:22 +02:00
# enableNoSemanticInterposition is a subset of the enableOptimizations flag that doesn't harm reproducibility.
# clang starts supporting `-fno-sematic-interposition` with version 10
, enableNoSemanticInterposition ? (!stdenv.cc.isClang || (stdenv.cc.isClang && lib.versionAtLeast stdenv.cc.version "10"))
cpython: Enable LTO on all builds as it doesn't break reproducibility LTO allows us to optimise the binaries we are shipping a bit further than just with the regular -Ox and other compiler flags. It also is deterministic and doesn't harm our reproducibility efforts while providing us with up to 10% performance gain (and sometimes slightly slower). See the table below for a comparsion of this version with the Python 3.9 build that sets -fno-semantic-interposition. +-------------------------+--------------------+------------------------+--------------+------------------------+ | Benchmark | py39-nsip.nix.json | py39-nsip-lto.nix.json | Change | Significance | +=========================+====================+========================+==============+========================+ | 2to3 | 642 ms | 620 ms | 1.03x faster | Significant (t=12.04) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | chameleon | 14.6 ms | 14.4 ms | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | chaos | 182 ms | 182 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | crypto_pyaes | 175 ms | 172 ms | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | deltablue | 11.2 ms | 11.2 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | django_template | 82.0 ms | 81.4 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | dulwich_log | 101 ms | 99.8 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | fannkuch | 634 ms | 638 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | float | 176 ms | 189 ms | 1.08x slower | Significant (t=-4.30) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | go | 366 ms | 365 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | hexiom | 14.9 ms | 15.1 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | json_dumps | 18.7 ms | 18.5 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | json_loads | 37.9 us | 37.3 us | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | logging_format | 14.2 us | 14.3 us | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | logging_silent | 305 ns | 313 ns | 1.02x slower | Significant (t=-3.91) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | logging_simple | 13.0 us | 13.2 us | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | mako | 24.7 ms | 23.3 ms | 1.06x faster | Significant (t=10.74) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | meteor_contest | 130 ms | 128 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | nbody | 201 ms | 201 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | nqueens | 152 ms | 154 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pathlib | 26.3 ms | 26.2 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pickle | 13.1 us | 13.7 us | 1.05x slower | Significant (t=-10.36) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pickle_dict | 26.6 us | 27.1 us | 1.02x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pickle_list | 4.34 us | 4.31 us | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pickle_pure_python | 738 us | 759 us | 1.03x slower | Significant (t=-5.26) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pidigits | 181 ms | 181 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pyflate | 959 ms | 974 ms | 1.02x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | python_startup | 34.0 ms | 31.4 ms | 1.08x faster | Significant (t=29.75) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | python_startup_no_site | 15.3 ms | 14.5 ms | 1.06x faster | Significant (t=17.58) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | raytrace | 849 ms | 846 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | regex_compile | 261 ms | 261 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | regex_dna | 187 ms | 221 ms | 1.18x slower | Significant (t=-46.94) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | regex_effbot | 3.66 ms | 3.98 ms | 1.09x slower | Significant (t=-18.55) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | regex_v8 | 29.7 ms | 29.3 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | richards | 113 ms | 110 ms | 1.03x faster | Significant (t=3.47) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_fft | 592 ms | 590 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_lu | 253 ms | 265 ms | 1.05x slower | Significant (t=-8.97) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_monte_carlo | 170 ms | 177 ms | 1.04x slower | Significant (t=-4.96) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_sor | 310 ms | 315 ms | 1.02x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_sparse_mat_mult | 8.36 ms | 8.33 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | spectral_norm | 232 ms | 229 ms | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sqlalchemy_declarative | 185 ms | 183 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sqlalchemy_imperative | 27.4 ms | 27.6 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sqlite_synth | 4.73 us | 4.73 us | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sympy_expand | 813 ms | 819 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sympy_integrate | 31.6 ms | 31.8 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sympy_str | 477 ms | 479 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sympy_sum | 245 ms | 247 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | telco | 11.3 ms | 11.4 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | tornado_http | 172 ms | 172 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | unpack_sequence | 56.2 ns | 51.2 ns | 1.10x faster | Significant (t=2.50) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | unpickle | 19.8 us | 19.5 us | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | unpickle_list | 5.75 us | 5.75 us | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | unpickle_pure_python | 524 us | 522 us | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | xml_etree_generate | 148 ms | 148 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | xml_etree_iterparse | 129 ms | 131 ms | 1.02x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | xml_etree_parse | 179 ms | 177 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | xml_etree_process | 118 ms | 119 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+
2021-05-25 20:30:28 +02:00
# enableLTO is a subset of the enableOptimizations flag that doesn't harm reproducibility.
# enabling LTO on 32bit arch causes downstream packages to fail when linking
# enabling LTO on *-darwin causes python3 to fail when linking.
, enableLTO ? stdenv.is64bit && stdenv.isLinux
, reproducibleBuild ? false
, pythonAttr ? "python${sourceVersion.major}${sourceVersion.minor}"
2018-01-24 16:10:08 +01: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
&& xorgproto != null
2018-01-24 16:10:08 +01:00
&& libX11 != null;
assert bluezSupport -> bluez != null;
2021-03-14 13:00:44 +01:00
assert mimetypesSupport -> mime-types != null;
assert lib.assertMsg (enableOptimizations -> (!stdenv.cc.isClang))
"Optimizations with clang are not supported. configure: error: llvm-profdata is required for a --enable-optimizations build but could not be found.";
assert lib.assertMsg (reproducibleBuild -> stripBytecode)
"Deterministic builds require stripping bytecode.";
assert lib.assertMsg (reproducibleBuild -> (!enableOptimizations))
"Deterministic builds are not achieved when optimizations are enabled.";
assert lib.assertMsg (reproducibleBuild -> (!rebuildBytecode))
"Deterministic builds are not achieved when (default unoptimized) bytecode is created.";
with lib;
2018-01-24 16:10:08 +01:00
let
buildPackages = pkgsBuildHost;
inherit (passthru) pythonForBuild;
tzdataSupport = tzdata != null && passthru.pythonAtLeast "3.9";
passthru = passthruFun rec {
inherit self sourceVersion packageOverrides;
implementation = "cpython";
libPrefix = "python${pythonVersion}";
executable = libPrefix;
pythonVersion = with sourceVersion; "${major}.${minor}";
sitePackages = "lib/${libPrefix}/site-packages";
inherit hasDistutilsCxxPatch;
pythonOnBuildForBuild = pkgsBuildBuild.${pythonAttr};
pythonOnBuildForHost = pkgsBuildHost.${pythonAttr};
pythonOnBuildForTarget = pkgsBuildTarget.${pythonAttr};
pythonOnHostForHost = pkgsHostHost.${pythonAttr};
pythonOnTargetForTarget = pkgsTargetTarget.${pythonAttr} or {};
};
version = with sourceVersion; "${major}.${minor}.${patch}${suffix}";
2021-08-11 14:00:00 +02:00
strictDeps = true;
nativeBuildInputs = optionals (!stdenv.isDarwin) [
autoreconfHook
2020-11-09 19:37:15 +01:00
] ++ optionals (!stdenv.isDarwin && passthru.pythonAtLeast "3.10") [
autoconf-archive # needed for AX_CHECK_COMPILE_FLAG
] ++ [
nukeReferences
] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
buildPackages.stdenv.cc
pythonForBuild
cpython: Enable LTO on all builds as it doesn't break reproducibility LTO allows us to optimise the binaries we are shipping a bit further than just with the regular -Ox and other compiler flags. It also is deterministic and doesn't harm our reproducibility efforts while providing us with up to 10% performance gain (and sometimes slightly slower). See the table below for a comparsion of this version with the Python 3.9 build that sets -fno-semantic-interposition. +-------------------------+--------------------+------------------------+--------------+------------------------+ | Benchmark | py39-nsip.nix.json | py39-nsip-lto.nix.json | Change | Significance | +=========================+====================+========================+==============+========================+ | 2to3 | 642 ms | 620 ms | 1.03x faster | Significant (t=12.04) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | chameleon | 14.6 ms | 14.4 ms | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | chaos | 182 ms | 182 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | crypto_pyaes | 175 ms | 172 ms | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | deltablue | 11.2 ms | 11.2 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | django_template | 82.0 ms | 81.4 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | dulwich_log | 101 ms | 99.8 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | fannkuch | 634 ms | 638 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | float | 176 ms | 189 ms | 1.08x slower | Significant (t=-4.30) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | go | 366 ms | 365 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | hexiom | 14.9 ms | 15.1 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | json_dumps | 18.7 ms | 18.5 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | json_loads | 37.9 us | 37.3 us | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | logging_format | 14.2 us | 14.3 us | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | logging_silent | 305 ns | 313 ns | 1.02x slower | Significant (t=-3.91) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | logging_simple | 13.0 us | 13.2 us | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | mako | 24.7 ms | 23.3 ms | 1.06x faster | Significant (t=10.74) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | meteor_contest | 130 ms | 128 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | nbody | 201 ms | 201 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | nqueens | 152 ms | 154 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pathlib | 26.3 ms | 26.2 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pickle | 13.1 us | 13.7 us | 1.05x slower | Significant (t=-10.36) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pickle_dict | 26.6 us | 27.1 us | 1.02x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pickle_list | 4.34 us | 4.31 us | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pickle_pure_python | 738 us | 759 us | 1.03x slower | Significant (t=-5.26) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pidigits | 181 ms | 181 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pyflate | 959 ms | 974 ms | 1.02x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | python_startup | 34.0 ms | 31.4 ms | 1.08x faster | Significant (t=29.75) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | python_startup_no_site | 15.3 ms | 14.5 ms | 1.06x faster | Significant (t=17.58) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | raytrace | 849 ms | 846 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | regex_compile | 261 ms | 261 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | regex_dna | 187 ms | 221 ms | 1.18x slower | Significant (t=-46.94) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | regex_effbot | 3.66 ms | 3.98 ms | 1.09x slower | Significant (t=-18.55) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | regex_v8 | 29.7 ms | 29.3 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | richards | 113 ms | 110 ms | 1.03x faster | Significant (t=3.47) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_fft | 592 ms | 590 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_lu | 253 ms | 265 ms | 1.05x slower | Significant (t=-8.97) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_monte_carlo | 170 ms | 177 ms | 1.04x slower | Significant (t=-4.96) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_sor | 310 ms | 315 ms | 1.02x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_sparse_mat_mult | 8.36 ms | 8.33 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | spectral_norm | 232 ms | 229 ms | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sqlalchemy_declarative | 185 ms | 183 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sqlalchemy_imperative | 27.4 ms | 27.6 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sqlite_synth | 4.73 us | 4.73 us | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sympy_expand | 813 ms | 819 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sympy_integrate | 31.6 ms | 31.8 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sympy_str | 477 ms | 479 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sympy_sum | 245 ms | 247 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | telco | 11.3 ms | 11.4 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | tornado_http | 172 ms | 172 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | unpack_sequence | 56.2 ns | 51.2 ns | 1.10x faster | Significant (t=2.50) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | unpickle | 19.8 us | 19.5 us | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | unpickle_list | 5.75 us | 5.75 us | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | unpickle_pure_python | 524 us | 522 us | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | xml_etree_generate | 148 ms | 148 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | xml_etree_iterparse | 129 ms | 131 ms | 1.02x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | xml_etree_parse | 179 ms | 177 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | xml_etree_process | 118 ms | 119 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+
2021-05-25 20:30:28 +02:00
] ++ optionals (stdenv.cc.isClang && enableLTO) [
stdenv.cc.cc.libllvm.out
];
2018-01-24 16:10:08 +01:00
buildInputs = filter (p: p != null) ([
2021-03-14 19:12:53 +01:00
zlib bzip2 expat xz libffi gdbm sqlite readline ncurses openssl ]
++ optionals x11Support [ tcl tk libX11 xorgproto ]
++ optionals (bluezSupport && stdenv.isLinux) [ bluez ]
++ optionals stdenv.isDarwin [ configd ])
++ optionals tzdataSupport [ tzdata ]; # `zoneinfo` module
2018-01-24 16:10:08 +01:00
2018-07-03 19:29:07 +02:00
hasDistutilsCxxPatch = !(stdenv.cc.isGNU or false);
pythonForBuildInterpreter = if stdenv.hostPlatform == stdenv.buildPlatform then
2018-12-18 13:06:37 +01:00
"$out/bin/python"
else pythonForBuild.interpreter;
2018-01-24 16:10:08 +01: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;
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;
multiarch =
if isDarwin then "darwin"
else "${multiarchCpu}-${parsed.kernel.name}-${pythonAbiName}";
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
'';
in with passthru; stdenv.mkDerivation {
pname = "python3";
inherit version;
2018-01-24 16:10:08 +01:00
inherit buildInputs nativeBuildInputs;
2018-12-18 13:06:37 +01:00
2018-01-24 16:10:08 +01:00
src = fetchurl {
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' ' '
'' + optionalString (stdenv.isDarwin && x11Support) ''
substituteInPlace setup.py --replace /Library/Frameworks /no-such-path
2018-01-24 16:10:08 +01:00
'';
patches = [
# 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")
# Make sure that the virtualenv activation scripts are
# owner-writable, so venvs can be recreated without permission
# errors.
./virtualenv-permissions.patch
2021-03-14 13:00:44 +01:00
] ++ optionals mimetypesSupport [
# Make the mimetypes module refer to the right file
./mimetypes.patch
] ++ optionals (isPy35 || isPy36) [
# Determinism: Write null timestamps when compiling python files.
./3.5/force_bytecode_determinism.patch
] ++ optionals isPy35 [
# Backports support for LD_LIBRARY_PATH from 3.6
./3.5/ld_library_path.patch
] ++ 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
# 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
2021-04-20 06:20:00 +02:00
] ++ optionals (pythonAtLeast "3.7") [
2018-07-02 23:54:19 +02:00
# Fix darwin build https://bugs.python.org/issue34027
./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
)
] ++ optionals (pythonAtLeast "3.9" && stdenv.isDarwin) [
# Stop checking for TCL/TK in global macOS locations
./3.9/darwin-tcl-tk.patch
] ++ 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.
(
if isPy35 then
./3.5/python-3.x-distutils-C++.patch
2021-04-20 06:20:00 +02:00
else if pythonAtLeast "3.7" then
./3.7/python-3.x-distutils-C++.patch
else
fetchpatch {
url = "https://bugs.python.org/file48016/python-3.x-distutils-C++.patch";
sha256 = "1h18lnpx539h5lfxyk379dxwr8m2raigcjixkf133l4xy3f4bzi2";
}
)
] ++ [
# 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
# 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
)
] ++ optionals (isPy36) [
2020-12-21 18:03:17 +01:00
# Backport a fix for ctypes.util.find_library.
./3.6/find_library.patch
2018-01-24 16:10:08 +01:00
];
postPatch = ''
substituteInPlace Lib/subprocess.py \
--replace "'/bin/sh'" "'${bash}/bin/sh'"
2021-03-14 13:00:44 +01:00
'' + optionalString mimetypesSupport ''
substituteInPlace Lib/mimetypes.py \
--replace "@mime-types@" "${mime-types}"
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);
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";
# Determinism: We fix the hashes of str, bytes and datetime objects.
PYTHONHASHSEED=0;
2018-01-24 16:10:08 +01:00
configureFlags = [
"--without-ensurepip"
"--with-system-expat"
"--with-system-ffi"
2021-08-07 14:00:00 +02:00
] ++ optionals (!static) [
"--enable-shared"
] ++ optionals enableOptimizations [
"--enable-optimizations"
cpython: Enable LTO on all builds as it doesn't break reproducibility LTO allows us to optimise the binaries we are shipping a bit further than just with the regular -Ox and other compiler flags. It also is deterministic and doesn't harm our reproducibility efforts while providing us with up to 10% performance gain (and sometimes slightly slower). See the table below for a comparsion of this version with the Python 3.9 build that sets -fno-semantic-interposition. +-------------------------+--------------------+------------------------+--------------+------------------------+ | Benchmark | py39-nsip.nix.json | py39-nsip-lto.nix.json | Change | Significance | +=========================+====================+========================+==============+========================+ | 2to3 | 642 ms | 620 ms | 1.03x faster | Significant (t=12.04) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | chameleon | 14.6 ms | 14.4 ms | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | chaos | 182 ms | 182 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | crypto_pyaes | 175 ms | 172 ms | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | deltablue | 11.2 ms | 11.2 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | django_template | 82.0 ms | 81.4 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | dulwich_log | 101 ms | 99.8 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | fannkuch | 634 ms | 638 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | float | 176 ms | 189 ms | 1.08x slower | Significant (t=-4.30) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | go | 366 ms | 365 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | hexiom | 14.9 ms | 15.1 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | json_dumps | 18.7 ms | 18.5 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | json_loads | 37.9 us | 37.3 us | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | logging_format | 14.2 us | 14.3 us | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | logging_silent | 305 ns | 313 ns | 1.02x slower | Significant (t=-3.91) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | logging_simple | 13.0 us | 13.2 us | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | mako | 24.7 ms | 23.3 ms | 1.06x faster | Significant (t=10.74) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | meteor_contest | 130 ms | 128 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | nbody | 201 ms | 201 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | nqueens | 152 ms | 154 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pathlib | 26.3 ms | 26.2 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pickle | 13.1 us | 13.7 us | 1.05x slower | Significant (t=-10.36) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pickle_dict | 26.6 us | 27.1 us | 1.02x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pickle_list | 4.34 us | 4.31 us | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pickle_pure_python | 738 us | 759 us | 1.03x slower | Significant (t=-5.26) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pidigits | 181 ms | 181 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | pyflate | 959 ms | 974 ms | 1.02x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | python_startup | 34.0 ms | 31.4 ms | 1.08x faster | Significant (t=29.75) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | python_startup_no_site | 15.3 ms | 14.5 ms | 1.06x faster | Significant (t=17.58) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | raytrace | 849 ms | 846 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | regex_compile | 261 ms | 261 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | regex_dna | 187 ms | 221 ms | 1.18x slower | Significant (t=-46.94) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | regex_effbot | 3.66 ms | 3.98 ms | 1.09x slower | Significant (t=-18.55) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | regex_v8 | 29.7 ms | 29.3 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | richards | 113 ms | 110 ms | 1.03x faster | Significant (t=3.47) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_fft | 592 ms | 590 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_lu | 253 ms | 265 ms | 1.05x slower | Significant (t=-8.97) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_monte_carlo | 170 ms | 177 ms | 1.04x slower | Significant (t=-4.96) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_sor | 310 ms | 315 ms | 1.02x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | scimark_sparse_mat_mult | 8.36 ms | 8.33 ms | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | spectral_norm | 232 ms | 229 ms | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sqlalchemy_declarative | 185 ms | 183 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sqlalchemy_imperative | 27.4 ms | 27.6 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sqlite_synth | 4.73 us | 4.73 us | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sympy_expand | 813 ms | 819 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sympy_integrate | 31.6 ms | 31.8 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sympy_str | 477 ms | 479 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | sympy_sum | 245 ms | 247 ms | 1.01x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | telco | 11.3 ms | 11.4 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | tornado_http | 172 ms | 172 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | unpack_sequence | 56.2 ns | 51.2 ns | 1.10x faster | Significant (t=2.50) | +-------------------------+--------------------+------------------------+--------------+------------------------+ | unpickle | 19.8 us | 19.5 us | 1.02x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | unpickle_list | 5.75 us | 5.75 us | 1.00x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | unpickle_pure_python | 524 us | 522 us | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | xml_etree_generate | 148 ms | 148 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | xml_etree_iterparse | 129 ms | 131 ms | 1.02x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | xml_etree_parse | 179 ms | 177 ms | 1.01x faster | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+ | xml_etree_process | 118 ms | 119 ms | 1.00x slower | Not significant | +-------------------------+--------------------+------------------------+--------------+------------------------+
2021-05-25 20:30:28 +02:00
] ++ optionals enableLTO [
"--with-lto"
] ++ optionals (pythonOlder "3.7") [
# This is unconditionally true starting in CPython 3.7.
"--with-threads"
] ++ optionals (sqlite != null && isPy3k) [
"--enable-loadable-sqlite-extensions"
] ++ optionals (openssl != null) [
"--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"
] ++ optionals stdenv.hostPlatform.isLinux [
# Never even try to use lchmod on linux,
# don't rely on detecting glibc-isms.
"ac_cv_func_lchmod=no"
] ++ optionals tzdataSupport [
"--with-tzpath=${tzdata}/share/zoneinfo"
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
'' + optionalString stdenv.isDarwin ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"
export MACOSX_DEPLOYMENT_TARGET=10.6
# Override the auto-detection in setup.py, which assumes a universal build
export PYTHON_DECIMAL_WITH_MACHINE=${if stdenv.isAarch64 then "uint128" else "x64"}
'' + optionalString (isPy3k && pythonOlder "3.7") ''
# 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.
export DETERMINISTIC_BUILD=1;
'' + optionalString stdenv.hostPlatform.isMusl ''
export NIX_CFLAGS_COMPILE+=" -DTHREAD_STACK_SIZE=0x100000"
cpython: add enableNoSemanticInterposition flag This flags enables the -fno-semantic-interposition compiler flag for all our cpython builds by default. It can be disabled by overriding the enableNoSemanticInterposition attribute. This CFLAG has the impact that our python code runs up to 23% faster than previously. See the pyperformance benchmark results below. The only downside that exists is that we can no longer override libpython symbols via LD_PRELOAD when calling the python interpreter. If a user needs they can disable the newly introduced flag and use that instead. However those situations should be rare. The Fedora Project did the equivalent change in their Fedora 32 release (and haven't reverted it yet). They wrote a nice [wiki page] about the ups and downs of this change. I recommend reading that. Benchmark results of running Python 3.9 before and after this change: +-------------------------+---------------+--------------------+--------------+------------------------+ | Benchmark | py39.nix.json | py39-nsip.nix.json | Change | Significance | +=========================+===============+====================+==============+========================+ | 2to3 | 666 ms | 642 ms | 1.04x faster | Significant (t=12.73) | +-------------------------+---------------+--------------------+--------------+------------------------+ | chameleon | 15.0 ms | 14.6 ms | 1.03x faster | Significant (t=4.70) | +-------------------------+---------------+--------------------+--------------+------------------------+ | chaos | 198 ms | 182 ms | 1.09x faster | Significant (t=13.73) | +-------------------------+---------------+--------------------+--------------+------------------------+ | crypto_pyaes | 185 ms | 175 ms | 1.06x faster | Significant (t=9.70) | +-------------------------+---------------+--------------------+--------------+------------------------+ | deltablue | 12.3 ms | 11.2 ms | 1.10x faster | Significant (t=14.45) | +-------------------------+---------------+--------------------+--------------+------------------------+ | django_template | 85.1 ms | 82.0 ms | 1.04x faster | Significant (t=6.61) | +-------------------------+---------------+--------------------+--------------+------------------------+ | dulwich_log | 102 ms | 101 ms | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | fannkuch | 670 ms | 634 ms | 1.06x faster | Significant (t=15.87) | +-------------------------+---------------+--------------------+--------------+------------------------+ | float | 182 ms | 176 ms | 1.03x faster | Significant (t=7.32) | +-------------------------+---------------+--------------------+--------------+------------------------+ | go | 393 ms | 366 ms | 1.07x faster | Significant (t=17.63) | +-------------------------+---------------+--------------------+--------------+------------------------+ | hexiom | 15.8 ms | 14.9 ms | 1.06x faster | Significant (t=13.81) | +-------------------------+---------------+--------------------+--------------+------------------------+ | json_dumps | 19.3 ms | 18.7 ms | 1.03x faster | Significant (t=7.46) | +-------------------------+---------------+--------------------+--------------+------------------------+ | json_loads | 38.4 us | 37.9 us | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | logging_format | 15.0 us | 14.2 us | 1.05x faster | Significant (t=6.32) | +-------------------------+---------------+--------------------+--------------+------------------------+ | logging_silent | 328 ns | 305 ns | 1.07x faster | Significant (t=8.85) | +-------------------------+---------------+--------------------+--------------+------------------------+ | logging_simple | 13.8 us | 13.0 us | 1.06x faster | Significant (t=10.77) | +-------------------------+---------------+--------------------+--------------+------------------------+ | mako | 25.2 ms | 24.7 ms | 1.02x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | meteor_contest | 133 ms | 130 ms | 1.03x faster | Significant (t=3.59) | +-------------------------+---------------+--------------------+--------------+------------------------+ | nbody | 222 ms | 201 ms | 1.10x faster | Significant (t=26.85) | +-------------------------+---------------+--------------------+--------------+------------------------+ | nqueens | 161 ms | 152 ms | 1.06x faster | Significant (t=8.84) | +-------------------------+---------------+--------------------+--------------+------------------------+ | pathlib | 28.4 ms | 26.3 ms | 1.08x faster | Significant (t=11.85) | +-------------------------+---------------+--------------------+--------------+------------------------+ | pickle | 13.8 us | 13.1 us | 1.06x faster | Significant (t=10.84) | +-------------------------+---------------+--------------------+--------------+------------------------+ | pickle_dict | 32.7 us | 26.6 us | 1.23x faster | Significant (t=32.43) | +-------------------------+---------------+--------------------+--------------+------------------------+ | pickle_list | 4.39 us | 4.34 us | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | pickle_pure_python | 782 us | 738 us | 1.06x faster | Significant (t=15.71) | +-------------------------+---------------+--------------------+--------------+------------------------+ | pidigits | 184 ms | 181 ms | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | pyflate | 1.02 sec | 959 ms | 1.07x faster | Significant (t=21.13) | +-------------------------+---------------+--------------------+--------------+------------------------+ | python_startup | 34.3 ms | 34.0 ms | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | python_startup_no_site | 15.5 ms | 15.3 ms | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | raytrace | 912 ms | 849 ms | 1.07x faster | Significant (t=11.21) | +-------------------------+---------------+--------------------+--------------+------------------------+ | regex_compile | 273 ms | 261 ms | 1.05x faster | Significant (t=5.82) | +-------------------------+---------------+--------------------+--------------+------------------------+ | regex_dna | 188 ms | 187 ms | 1.00x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | regex_effbot | 3.37 ms | 3.66 ms | 1.09x slower | Significant (t=-16.12) | +-------------------------+---------------+--------------------+--------------+------------------------+ | regex_v8 | 29.8 ms | 29.7 ms | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | richards | 119 ms | 113 ms | 1.05x faster | Significant (t=5.71) | +-------------------------+---------------+--------------------+--------------+------------------------+ | scimark_fft | 625 ms | 592 ms | 1.06x faster | Significant (t=19.64) | +-------------------------+---------------+--------------------+--------------+------------------------+ | scimark_lu | 273 ms | 253 ms | 1.08x faster | Significant (t=16.68) | +-------------------------+---------------+--------------------+--------------+------------------------+ | scimark_monte_carlo | 186 ms | 170 ms | 1.10x faster | Significant (t=14.70) | +-------------------------+---------------+--------------------+--------------+------------------------+ | scimark_sor | 330 ms | 310 ms | 1.07x faster | Significant (t=11.89) | +-------------------------+---------------+--------------------+--------------+------------------------+ | scimark_sparse_mat_mult | 9.03 ms | 8.36 ms | 1.08x faster | Significant (t=17.71) | +-------------------------+---------------+--------------------+--------------+------------------------+ | spectral_norm | 247 ms | 232 ms | 1.06x faster | Significant (t=14.64) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sqlalchemy_declarative | 194 ms | 185 ms | 1.04x faster | Significant (t=4.80) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sqlalchemy_imperative | 28.2 ms | 27.4 ms | 1.03x faster | Significant (t=3.80) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sqlite_synth | 4.89 us | 4.73 us | 1.03x faster | Significant (t=10.60) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sympy_expand | 833 ms | 813 ms | 1.02x faster | Significant (t=4.82) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sympy_integrate | 33.0 ms | 31.6 ms | 1.05x faster | Significant (t=6.47) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sympy_str | 490 ms | 477 ms | 1.03x faster | Significant (t=7.58) | +-------------------------+---------------+--------------------+--------------+------------------------+ | sympy_sum | 254 ms | 245 ms | 1.04x faster | Significant (t=7.82) | +-------------------------+---------------+--------------------+--------------+------------------------+ | telco | 11.6 ms | 11.3 ms | 1.03x faster | Significant (t=5.62) | +-------------------------+---------------+--------------------+--------------+------------------------+ | tornado_http | 175 ms | 172 ms | 1.02x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | unpack_sequence | 51.4 ns | 56.2 ns | 1.09x slower | Significant (t=-2.40) | +-------------------------+---------------+--------------------+--------------+------------------------+ | unpickle | 20.3 us | 19.8 us | 1.02x faster | Significant (t=4.09) | +-------------------------+---------------+--------------------+--------------+------------------------+ | unpickle_list | 5.41 us | 5.75 us | 1.06x slower | Significant (t=-26.56) | +-------------------------+---------------+--------------------+--------------+------------------------+ | unpickle_pure_python | 544 us | 524 us | 1.04x faster | Significant (t=6.47) | +-------------------------+---------------+--------------------+--------------+------------------------+ | xml_etree_generate | 154 ms | 148 ms | 1.04x faster | Significant (t=7.98) | +-------------------------+---------------+--------------------+--------------+------------------------+ | xml_etree_iterparse | 130 ms | 129 ms | 1.01x faster | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | xml_etree_parse | 178 ms | 179 ms | 1.00x slower | Not significant | +-------------------------+---------------+--------------------+--------------+------------------------+ | xml_etree_process | 123 ms | 118 ms | 1.04x faster | Significant (t=10.22) | +-------------------------+---------------+--------------------+--------------+------------------------+ [wiki page]: https://fedoraproject.org/wiki/Changes/PythonNoSemanticInterpositionSpeedup
2021-05-25 19:43:22 +02: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"
2018-01-24 16:10:08 +01:00
'';
setupHook = python-setup-hook sitePackages;
postInstall = let
# References *not* to nuke from (sys)config files
keep-references = concatMapStringsSep " " (val: "-e ${val}") ([
(placeholder "out")
] ++ optionals tzdataSupport [
tzdata
]);
in ''
2018-01-24 16:10:08 +01:00
# needed for some packages, especially packages that backport functionality
# to 2.x from 3.x
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
touch $out/lib/${libPrefix}/test/__init__.py
2018-01-24 16:10:08 +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!
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
# Further get rid of references. https://github.com/NixOS/nixpkgs/issues/51668
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} '{}' +
# 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}/"
# debug info can't be separated from a static library and would otherwise be
# left in place by a separateDebugInfo build. force its removal here to save
# space in output.
$STRIP -S $out/lib/${libPrefix}/config-*/libpython*.a || true
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}
'' + optionalString includeSiteCustomize ''
# Include a sitecustomize.py file
cp ${../sitecustomize.py} $out/${sitePackages}/sitecustomize.py
'' + 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 ''
2018-01-24 16:10:08 +01:00
# Python 3.7 implements PEP 552, introducing support for deterministic bytecode.
# compileall uses the therein introduced checked-hash method by default when
# `SOURCE_DATE_EPOCH` is set.
# We exclude lib2to3 because that's Python 2 code which fails
# 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.
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 -
'' + ''
# *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
'';
preFixup = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
# Ensure patch-shebangs uses shebangs of host interpreter.
export PATH=${lib.makeBinPath [ "$out" bash ]}:$PATH
2018-01-24 16:10:08 +01:00
'';
# Add CPython specific setup-hook that configures distutils.sysconfig to
# always load sysconfigdata from host Python.
postFixup = lib.optionalString (!stdenv.hostPlatform.isDarwin) ''
cat << "EOF" >> "$out/nix-support/setup-hook"
${sysconfigdataHook}
EOF
'';
# Enforce that we don't have references to the OpenSSL -dev package, which we
# explicitly specify in our configure flags above.
disallowedReferences =
lib.optionals (openssl != null && !static) [ openssl.dev ]
++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
# Ensure we don't have references to build-time packages.
# These typically end up in shebangs.
pythonForBuild buildPackages.bash
];
separateDebugInfo = true;
inherit passthru;
2018-01-24 16:10:08 +01:00
enableParallelBuilding = true;
meta = {
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;
maintainers = with maintainers; [ fridh ];
2018-01-24 16:10:08 +01:00
};
}