16 buildPythonPackage rec {
17 pname = "dissect-hypervisor";
21 disabled = pythonOlder "3.9";
23 src = fetchFromGitHub {
25 repo = "dissect.hypervisor";
26 rev = "refs/tags/${version}";
27 hash = "sha256-bSDO8MMkDbyJ8ylB5PXmVHnzp/4UYQ4NKhOTXONVBzc=";
41 optional-dependencies = {
48 nativeCheckInputs = [ pytestCheckHook ];
50 pythonImportsCheck = [ "dissect.hypervisor" ];
53 description = "Dissect module implementing parsers for various hypervisor disk, backup and configuration files";
54 homepage = "https://github.com/fox-it/dissect.hypervisor";
55 changelog = "https://github.com/fox-it/dissect.hypervisor/releases/tag/${version}";
56 license = licenses.agpl3Only;
57 maintainers = with maintainers; [ fab ];