3
0
Fork 0
forked from mirrors/nixpkgs

python26Full and explicit python27Full

svn path=/nixpkgs/trunk/; revision=29833
This commit is contained in:
Florian Friesdorf 2011-10-14 09:47:30 +00:00
parent 7a2cb5bc64
commit d6e22c9b4a

View file

@ -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 { };