2018-12-31 12:59:20 +00:00
|
|
|
{ pkgs, lib }:
|
|
|
|
|
|
|
|
with pkgs;
|
|
|
|
|
|
|
|
(let
|
|
|
|
|
|
|
|
# Common passthru for all Python interpreters.
|
|
|
|
passthruFun =
|
|
|
|
{ implementation
|
|
|
|
, libPrefix
|
|
|
|
, executable
|
|
|
|
, sourceVersion
|
|
|
|
, pythonVersion
|
|
|
|
, packageOverrides
|
|
|
|
, sitePackages
|
2019-04-18 03:57:20 +01:00
|
|
|
, hasDistutilsCxxPatch
|
2018-12-31 12:59:20 +00:00
|
|
|
, pythonForBuild
|
|
|
|
, self
|
|
|
|
}: let
|
|
|
|
pythonPackages = callPackage ../../../top-level/python-packages.nix {
|
|
|
|
python = self;
|
|
|
|
overrides = packageOverrides;
|
|
|
|
};
|
|
|
|
in rec {
|
|
|
|
isPy27 = pythonVersion == "2.7";
|
|
|
|
isPy33 = pythonVersion == "3.3"; # TODO: remove
|
|
|
|
isPy34 = pythonVersion == "3.4"; # TODO: remove
|
|
|
|
isPy35 = pythonVersion == "3.5";
|
|
|
|
isPy36 = pythonVersion == "3.6";
|
|
|
|
isPy37 = pythonVersion == "3.7";
|
2019-01-04 11:31:42 +00:00
|
|
|
isPy2 = lib.strings.substring 0 1 pythonVersion == "2";
|
|
|
|
isPy3 = lib.strings.substring 0 1 pythonVersion == "3";
|
|
|
|
isPy3k = isPy3;
|
2019-02-04 08:09:38 +00:00
|
|
|
isPyPy = lib.hasInfix "pypy" interpreter;
|
2018-12-31 12:59:20 +00:00
|
|
|
|
|
|
|
buildEnv = callPackage ./wrapper.nix { python = self; inherit (pythonPackages) requiredPythonModules; };
|
|
|
|
withPackages = import ./with-packages.nix { inherit buildEnv pythonPackages;};
|
|
|
|
pkgs = pythonPackages;
|
|
|
|
interpreter = "${self}/bin/${executable}";
|
2019-01-02 19:09:44 +00:00
|
|
|
inherit executable implementation libPrefix pythonVersion sitePackages;
|
2018-12-31 12:59:20 +00:00
|
|
|
inherit sourceVersion;
|
|
|
|
pythonAtLeast = lib.versionAtLeast pythonVersion;
|
|
|
|
pythonOlder = lib.versionOlder pythonVersion;
|
2019-04-18 03:57:20 +01:00
|
|
|
inherit hasDistutilsCxxPatch pythonForBuild;
|
2018-12-31 12:59:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
python27 = callPackage ./cpython/2.7 {
|
|
|
|
self = python27;
|
|
|
|
sourceVersion = {
|
|
|
|
major = "2";
|
|
|
|
minor = "7";
|
2019-03-04 07:56:15 +00:00
|
|
|
patch = "16";
|
2018-12-31 12:59:20 +00:00
|
|
|
suffix = "";
|
|
|
|
};
|
2019-03-04 07:56:15 +00:00
|
|
|
sha256 = "1mqfcqp5y8r0bfyr7ppl74n0lig45p9mc4b8adlcpvj74rhfy8pj";
|
2018-12-31 12:59:20 +00:00
|
|
|
inherit (darwin) CF configd;
|
|
|
|
inherit passthruFun;
|
|
|
|
};
|
|
|
|
|
|
|
|
python35 = callPackage ./cpython {
|
|
|
|
self = python35;
|
|
|
|
sourceVersion = {
|
|
|
|
major = "3";
|
|
|
|
minor = "5";
|
2019-03-23 07:42:38 +00:00
|
|
|
patch = "7";
|
2018-12-31 12:59:20 +00:00
|
|
|
suffix = "";
|
|
|
|
};
|
2019-03-23 07:42:38 +00:00
|
|
|
sha256 = "1p67pnp2ca5przx2s45r8m55dcn6f5hsm0l4s1zp7mglkf4r4n18";
|
2018-12-31 12:59:20 +00:00
|
|
|
inherit (darwin) CF configd;
|
|
|
|
inherit passthruFun;
|
|
|
|
};
|
|
|
|
|
|
|
|
python36 = callPackage ./cpython {
|
|
|
|
self = python36;
|
|
|
|
sourceVersion = {
|
|
|
|
major = "3";
|
|
|
|
minor = "6";
|
2019-07-09 09:02:26 +01:00
|
|
|
patch = "9";
|
2018-12-31 12:59:20 +00:00
|
|
|
suffix = "";
|
|
|
|
};
|
2019-07-09 09:02:26 +01:00
|
|
|
sha256 = "1nkh70azbv866aw5a9bbxsxarsf40233vrzpjq17z3rz9ramybsy";
|
2018-12-31 12:59:20 +00:00
|
|
|
inherit (darwin) CF configd;
|
|
|
|
inherit passthruFun;
|
|
|
|
};
|
|
|
|
|
|
|
|
python37 = callPackage ./cpython {
|
|
|
|
self = python37;
|
|
|
|
sourceVersion = {
|
|
|
|
major = "3";
|
|
|
|
minor = "7";
|
2019-07-09 09:02:38 +01:00
|
|
|
patch = "4";
|
2018-12-31 12:59:20 +00:00
|
|
|
suffix = "";
|
|
|
|
};
|
2019-07-09 09:02:38 +01:00
|
|
|
sha256 = "0gxiv5617zd7dnqm5k9r4q2188lk327nf9jznwq9j6b8p0s92ygv";
|
2018-12-31 12:59:20 +00:00
|
|
|
inherit (darwin) CF configd;
|
|
|
|
inherit passthruFun;
|
|
|
|
};
|
|
|
|
|
2019-07-09 14:19:19 +01:00
|
|
|
python38 = callPackage ./cpython {
|
|
|
|
self = python38;
|
|
|
|
sourceVersion = {
|
|
|
|
major = "3";
|
|
|
|
minor = "8";
|
|
|
|
patch = "0";
|
2019-08-03 07:13:38 +01:00
|
|
|
suffix = "b3";
|
2019-07-09 14:19:19 +01:00
|
|
|
};
|
2019-08-03 07:13:38 +01:00
|
|
|
sha256 = "03wq85pkpr9j56k3zg6whahc5park1pzshbakl7y50lzrkpq2ynd";
|
2019-07-09 14:19:19 +01:00
|
|
|
inherit (darwin) CF configd;
|
|
|
|
inherit passthruFun;
|
|
|
|
};
|
|
|
|
|
2019-01-01 10:34:44 +00:00
|
|
|
pypy27 = callPackage ./pypy {
|
|
|
|
self = pypy27;
|
|
|
|
sourceVersion = {
|
2019-02-12 01:52:26 +00:00
|
|
|
major = "7";
|
2019-01-01 10:34:44 +00:00
|
|
|
minor = "0";
|
|
|
|
patch = "0";
|
|
|
|
};
|
2019-02-12 01:52:26 +00:00
|
|
|
sha256 = "1m6ja79sbkl38p1hs7c0n4kq5xzn01wp7wl5456hsw9q6cwg6894";
|
2019-01-01 10:34:44 +00:00
|
|
|
pythonVersion = "2.7";
|
|
|
|
db = db.override { dbmSupport = true; };
|
|
|
|
python = python27;
|
|
|
|
inherit passthruFun;
|
|
|
|
};
|
|
|
|
|
2019-01-02 19:09:44 +00:00
|
|
|
pypy35 = callPackage ./pypy {
|
|
|
|
self = pypy35;
|
2019-01-01 10:34:44 +00:00
|
|
|
sourceVersion = {
|
2019-02-12 01:52:26 +00:00
|
|
|
major = "7";
|
2019-01-01 10:34:44 +00:00
|
|
|
minor = "0";
|
|
|
|
patch = "0";
|
|
|
|
};
|
2019-02-12 01:52:26 +00:00
|
|
|
sha256 = "0hbv9ziv8n9lqnr6cndrw70p6g40c00w1ds7lmzgrr153myxkp7w";
|
2019-01-01 10:34:44 +00:00
|
|
|
pythonVersion = "3.5";
|
|
|
|
db = db.override { dbmSupport = true; };
|
|
|
|
python = python27;
|
|
|
|
inherit passthruFun;
|
|
|
|
};
|
2018-12-31 12:59:20 +00:00
|
|
|
|
2019-01-03 11:00:44 +00:00
|
|
|
pypy27_prebuilt = callPackage ./pypy/prebuilt.nix {
|
|
|
|
# Not included at top-level
|
|
|
|
self = pythonInterpreters.pypy27_prebuilt;
|
|
|
|
sourceVersion = {
|
2019-08-12 12:52:14 +01:00
|
|
|
major = "7";
|
|
|
|
minor = "1";
|
|
|
|
patch = "1";
|
2019-01-03 11:00:44 +00:00
|
|
|
};
|
2019-08-12 12:52:14 +01:00
|
|
|
sha256 = "0rlx4x9xy9h989w6sy4h7lknm00956r30c5gjxwsvf8fhvq9xc3k"; # linux64
|
2019-01-03 11:00:44 +00:00
|
|
|
pythonVersion = "2.7";
|
|
|
|
inherit passthruFun;
|
|
|
|
ncurses = ncurses5;
|
|
|
|
};
|
|
|
|
|
2019-08-12 12:52:14 +01:00
|
|
|
pypy36_prebuilt = callPackage ./pypy/prebuilt.nix {
|
|
|
|
# Not included at top-level
|
|
|
|
self = pythonInterpreters.pypy36_prebuilt;
|
2019-01-03 11:00:44 +00:00
|
|
|
sourceVersion = {
|
2019-08-12 12:52:14 +01:00
|
|
|
major = "7";
|
|
|
|
minor = "1";
|
|
|
|
patch = "1";
|
2019-01-03 11:00:44 +00:00
|
|
|
};
|
2019-08-12 12:52:14 +01:00
|
|
|
sha256 = "1c1xx6dm1n4xvh1vd3rcvyyixm5jm9rvzisji1a5bc9l38xzc540"; # linux64
|
|
|
|
pythonVersion = "3.6";
|
2019-01-03 11:00:44 +00:00
|
|
|
inherit passthruFun;
|
|
|
|
ncurses = ncurses5;
|
|
|
|
};
|
|
|
|
|
2019-03-04 07:56:15 +00:00
|
|
|
})
|