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
1 changed files with 1 additions and 1 deletions

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