3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.libxslt: fix reference to output

This commit is contained in:
Frederik Rietdijk 2019-10-29 12:49:41 +01:00 committed by Frederik Rietdijk
parent 6a97422a75
commit 7850356283

View file

@ -3691,7 +3691,7 @@ in {
libxml2 = (toPythonModule (pkgs.libxml2.override{pythonSupport=true; inherit python;})).py;
libxslt = toPythonModule (pkgs.libxslt.override{pythonSupport=true; inherit python; inherit (self) libxml2;}).py;
libxslt = (toPythonModule (pkgs.libxslt.override{pythonSupport=true; inherit python; inherit (self) libxml2;})).py;
limits = callPackage ../development/python-modules/limits { };