1 { lib, buildPythonPackage, fetchFromGitLab, pkg-config, lxml, libvirt, nose }:
3 buildPythonPackage rec {
7 src = assert version == libvirt.version; fetchFromGitLab {
9 repo = "libvirt-python";
11 sha256 = "0vdvpqiypxis8wny7q39qps050zi13l66pnpa47040q6bar0d4xw";
14 nativeBuildInputs = [ pkg-config ];
15 buildInputs = [ libvirt lxml ];
17 checkInputs = [ nose ];
23 homepage = "https://libvirt.org/python.html";
24 description = "libvirt Python bindings";
25 license = licenses.lgpl2;
26 maintainers = [ maintainers.fpletz ];