From fa5002d97bb42cda5c1935d60ca756af0e4eb39e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 14 Jul 2011 19:35:24 +0000 Subject: [PATCH] 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 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0e764e938e8e..2558602afd54 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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;