pythonPackages.libvirt: fix python executable path

This commit is contained in:
Nathaniel Baxter 2015-02-21 17:50:01 +11:00 committed by Bjørn Forsman
parent 0be8418275
commit aa91480f45

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/;