3
0
Fork 0
forked from mirrors/nixpkgs

libxml2Python: keep using python2

as to not break too much
This commit is contained in:
Frederik Rietdijk 2019-10-29 19:02:47 +01:00
parent 4d680f3f3d
commit 860b22f576

View file

@ -12727,7 +12727,9 @@ in
python = if stdenv.isDarwin then python2 else python3;
};
libxml2Python = pkgs.buildEnv { # slightly hacky
libxml2Python = let
libxml2 = python2Packages.libxml2;
in pkgs.buildEnv { # slightly hacky
name = "libxml2+py-${res.libxml2.version}";
paths = with libxml2; [ dev bin py ];
inherit (libxml2) passthru;