* For convenience, provide pythonFull as a wrapper around Python that

includes all the internal Python modules.

svn path=/nixpkgs/branches/modular-python/; revision=26564
This commit is contained in:
Eelco Dolstra 2011-03-28 12:31:56 +00:00
parent d449c4db98
commit 3c9f4e6e72

View file

@ -2273,7 +2273,9 @@ let
sw_vers = if stdenv.isDarwin then pkgs.darwinSwVersUtility else null;
};
pythonWrapper = callPackage ../development/interpreters/python/wrapper.nix { };
pythonFull = callPackage ../development/interpreters/python/wrapper.nix {
extraLibs = lib.attrValues python.modules;
};
pyrex = pyrex095;