28 lines
643 B
Nix
28 lines
643 B
Nix
|
{ stdenv, buildPythonPackage, fetchgit, pkgconfig, lxml, libvirt, nose }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "libvirt";
|
||
|
version = "5.9.0";
|
||
|
|
||
|
src = fetchgit {
|
||
|
url = "git://libvirt.org/libvirt-python.git";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "0qvr0s7yasswy1s5cvkm91iifk33pb8s7nbb38zznc46706b358r";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ pkgconfig ];
|
||
|
buildInputs = [ libvirt lxml ];
|
||
|
|
||
|
checkInputs = [ nose ];
|
||
|
checkPhase = ''
|
||
|
nosetests
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "http://www.libvirt.org/";
|
||
|
description = "libvirt Python bindings";
|
||
|
license = licenses.lgpl2;
|
||
|
maintainers = [ maintainers.fpletz ];
|
||
|
};
|
||
|
}
|