3
0
Fork 0
forked from mirrors/nixpkgs

all-packages.nix: ensure that python3 and python3Packages refer to the same version!

Thanks to Vladimír for the suggestion.
This commit is contained in:
Peter Simons 2014-05-13 23:31:44 +02:00
parent cc9b8a8b6f
commit 61cd66944e

View file

@ -3460,7 +3460,7 @@ let
python33 = callPackage ../development/interpreters/python/3.3 { };
python34 = hiPrio (callPackage ../development/interpreters/python/3.4 { });
python = python27;
python3 = python34;
python3 = python3Packages.python;
pypy = callPackage ../development/interpreters/pypy/2.2 { };
@ -6326,7 +6326,7 @@ let
python = python26;
};
python3Packages = python33Packages;
python3Packages = python34Packages;
python33Packages = recurseIntoAttrs (import ./python-packages.nix {
inherit pkgs;