pythonPackages.libvirt: fix python executable path

This commit is contained in:
Nathaniel Baxter
2015-02-23 20:09:54 +01:00
committed by Bjørn Forsman
parent 0be8418275
commit aa91480f45
+2 -2
View File
@@ -13033,9 +13033,9 @@ let
buildInputs = with self; [ python pkgs.pkgconfig pkgs.libvirt lxml ];
buildPhase = "python setup.py build";
buildPhase = "${python.interpreter} setup.py build";
installPhase = "python setup.py install --prefix=$out";
installPhase = "${python.interpreter} setup.py install --prefix=$out";
meta = {
homepage = http://www.libvirt.org/;