forked from mirrors/nixpkgs
python26Full and explicit python27Full
svn path=/nixpkgs/trunk/; revision=29833
This commit is contained in:
parent
7a2cb5bc64
commit
d6e22c9b4a
|
@ -2586,8 +2586,16 @@ let
|
|||
sw_vers = if stdenv.isDarwin then pkgs.darwinSwVersUtility else null;
|
||||
};
|
||||
|
||||
pythonFull = callPackage ../development/interpreters/python/wrapper.nix {
|
||||
extraLibs = lib.attrValues python.modules;
|
||||
pythonFull = python27Full;
|
||||
|
||||
python26Full = callPackage ../development/interpreters/python/wrapper.nix {
|
||||
extraLibs = lib.attrValues python26.modules;
|
||||
python = python26;
|
||||
};
|
||||
|
||||
python27Full = callPackage ../development/interpreters/python/wrapper.nix {
|
||||
extraLibs = lib.attrValues python27.modules;
|
||||
python = python27;
|
||||
};
|
||||
|
||||
pythonhomeWrapper = callPackage ../development/interpreters/python/pythonhome-wrapper.nix { };
|
||||
|
|
Loading…
Reference in a new issue