fix python26Full expression
This commit is contained in:
parent
212b4df91c
commit
37abd1e353
|
@ -2828,22 +2828,19 @@ let
|
|||
|
||||
pure = callPackage ../development/interpreters/pure {};
|
||||
|
||||
python = python27;
|
||||
python3 = python32;
|
||||
|
||||
python26 = callPackage ../development/interpreters/python/2.6 { };
|
||||
|
||||
python27 = callPackage ../development/interpreters/python/2.7 { };
|
||||
|
||||
python32 = callPackage ../development/interpreters/python/3.2 { };
|
||||
|
||||
pythonFull = python27Full;
|
||||
python = python27;
|
||||
python26 = callPackage ../development/interpreters/python/2.6 { };
|
||||
python27 = callPackage ../development/interpreters/python/2.7 { };
|
||||
|
||||
pythonFull = python27Full;
|
||||
python26Full = callPackage ../development/interpreters/python/wrapper.nix {
|
||||
extraLibs = lib.attrValues python26.modules;
|
||||
python = python26;
|
||||
inherit (python26Packages) recursivePthLoader;
|
||||
};
|
||||
|
||||
python27Full = callPackage ../development/interpreters/python/wrapper.nix {
|
||||
extraLibs = lib.attrValues python27.modules;
|
||||
python = python27;
|
||||
|
|
Loading…
Reference in New Issue