Skip to content

Commit

Permalink
libvirt-python: 3.6.0 -> 3.8.0
Browse files Browse the repository at this point in the history
This fixes an eval error introduced by
17a0692.

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
  • Loading branch information
aszlig committed Oct 27, 2017
1 parent f2cc452 commit a7449bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -23982,13 +23982,13 @@ EOF
};

libvirt = let
version = "3.6.0";
version = "3.8.0";
in assert version == pkgs.libvirt.version; pkgs.stdenv.mkDerivation rec {
name = "libvirt-python-${version}";

src = pkgs.fetchurl {
url = "http://libvirt.org/sources/python/${name}.tar.gz";
sha256 = "1l0s9cx38qb6x5xj32r531xap11m93c3gag30idj8fzkn74cpfgc";
sha256 = "02spx8kfcsnqwsshd7bk2plyic2lbpwzg16sf3csh0avck5akjsz";
};

nativeBuildInputs = [ pkgs.pkgconfig ];
Expand Down

1 comment on commit a7449bf

@fpletz
Copy link
Member

@fpletz fpletz commented on a7449bf Oct 27, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, sorry, forgot about that. Thanks!

Please sign in to comment.