Files
nixpkgs/pkgs/development/python-modules/libvirt/default.nix
T

29 lines
702 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchFromGitLab, pkgconfig, lxml, libvirt, nose }:
2017-12-09 10:10:05 +01:00
buildPythonPackage rec {
pname = "libvirt";
2020-09-26 18:19:31 +02:00
version = "6.6.0";
2017-12-09 10:10:05 +01:00
src = assert version == libvirt.version; fetchFromGitLab {
owner = "libvirt";
repo = "libvirt-python";
2018-02-26 22:50:46 +00:00
rev = "v${version}";
2020-09-26 18:19:31 +02:00
sha256 = "0jj6b2nlx7qldwbvixz74abn3p0sq4lkf6ak74vynrv5xvlycb9v";
2017-12-09 10:10:05 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libvirt lxml ];
checkInputs = [ nose ];
checkPhase = ''
nosetests
'';
meta = with stdenv.lib; {
2020-10-01 10:55:56 +02:00
homepage = "https://libvirt.org/python.html";
2017-12-09 10:10:05 +01:00
description = "libvirt Python bindings";
license = licenses.lgpl2;
maintainers = [ maintainers.fpletz ];
};
}