From ad3ef645b0eeae163fee6aae607f265bdb2ae0d8 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 20 Nov 2019 18:24:17 +0100 Subject: [PATCH] python3Minimal: 3.7.4 -> 3.7.5 Base it on python37 so we ensure the package remains up to date. --- pkgs/development/interpreters/python/default.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index f5f4dce68b42..7fa276dd0708 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -46,7 +46,7 @@ with pkgs; inherit hasDistutilsCxxPatch pythonForBuild; }; -in { +in rec { python27 = callPackage ./cpython/2.7 { self = python27; @@ -127,18 +127,8 @@ in { }; # Minimal versions of Python (built without optional dependencies) - python3Minimal = (callPackage ./cpython { + python3Minimal = (python37.override { self = python3Minimal; - sourceVersion = { - major = "3"; - minor = "7"; - patch = "4"; - suffix = ""; - }; - sha256 = "0gxiv5617zd7dnqm5k9r4q2188lk327nf9jznwq9j6b8p0s92ygv"; - inherit (darwin) CF configd; - inherit passthruFun; - # strip down that python version as much as possible openssl = null; readline = null;