libvirt-python: 3.6.0 -> 3.8.0
This fixes an eval error introduced by 17a069276faec303d173aa5ef23cf95ea5233690. The reason the evaluation fails is because there's an assertion on the version of the Python library in order to be in par with the top-level libvirt package. Signed-off-by: aszlig <aszlig@nix.build> Cc: @fpletz
This commit is contained in:
parent
f2cc452874
commit
a7449bf4d8
@ -23982,13 +23982,13 @@ EOF
|
|||||||
};
|
};
|
||||||
|
|
||||||
libvirt = let
|
libvirt = let
|
||||||
version = "3.6.0";
|
version = "3.8.0";
|
||||||
in assert version == pkgs.libvirt.version; pkgs.stdenv.mkDerivation rec {
|
in assert version == pkgs.libvirt.version; pkgs.stdenv.mkDerivation rec {
|
||||||
name = "libvirt-python-${version}";
|
name = "libvirt-python-${version}";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "http://libvirt.org/sources/python/${name}.tar.gz";
|
url = "http://libvirt.org/sources/python/${name}.tar.gz";
|
||||||
sha256 = "1l0s9cx38qb6x5xj32r531xap11m93c3gag30idj8fzkn74cpfgc";
|
sha256 = "02spx8kfcsnqwsshd7bk2plyic2lbpwzg16sf3csh0avck5akjsz";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgs.pkgconfig ];
|
nativeBuildInputs = [ pkgs.pkgconfig ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user