libxml2: add a pythonPackages.libxml2 alias for the bindings

This commit is contained in:
Frederik Rietdijk 2016-11-08 10:36:37 +01:00
parent be31980848
commit d2111660c5

View File

@ -13447,6 +13447,9 @@ in {
clblas = pkgs.clblas-cuda;
};
libxml2 = if isPy3k then throw "libxml2 not supported for interpreter ${python.executable}" else
(pkgs.libxml2.override{supportPython=true; python2=python;}).py;
libxslt = if isPy3k then throw "libxslt not supported for interpreter ${python.executable}" else
(pkgs.libxslt.override{pythonSupport=true; python2=python; inherit (self) libxml2;}).py;