1 { lib, buildPythonPackage, fetchFromGitLab, pkg-config, lxml, libvirt, nose }:
3 buildPythonPackage rec {
8 src = fetchFromGitLab {
10 repo = "libvirt-python";
12 hash = "sha256-zl1Hfm7flRflNjIpLoLAlPDysYlieC05HEd/mzFW8pU=";
15 nativeBuildInputs = [ pkg-config ];
16 buildInputs = [ libvirt lxml ];
18 nativeCheckInputs = [ nose ];
24 homepage = "https://libvirt.org/python.html";
25 description = "libvirt Python bindings";
26 license = licenses.lgpl2;
27 maintainers = [ maintainers.fpletz ];