Revert my earlier commit that added libxml2 to pythonFull.

After some discussion on #nixos, the consensus is that expressions should not
provide functionality that is not part of the package itself, i.e. pythonFull
ought to include only those extensions that are part of the python
distribution.

svn path=/nixpkgs/trunk/; revision=27787
This commit is contained in:
Peter Simons 2011-07-14 19:35:24 +00:00
parent e7a9b41e9c
commit fa5002d97b

View File

@ -2452,7 +2452,7 @@ let
};
pythonFull = callPackage ../development/interpreters/python/wrapper.nix {
extraLibs = lib.attrValues python.modules ++ [libxml2Python];
extraLibs = lib.attrValues python.modules;
};
pyrex = pyrex095;