Files
nixpkgs/pkgs/development/python-modules/dissect-hypervisor/default.nix
T
Fabian Affolter 00ea307f9a python311Packages.dissect-hypervisor: 3.9 -> 3.10
Diff: fox-it/dissect.hypervisor@refs/tags/3.9...3.10

Changelog: https://github.com/fox-it/dissect.hypervisor/releases/tag/3.10
2023-11-17 11:19:22 +01:00

65 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, defusedxml
, dissect-cstruct
, dissect-util
, fetchFromGitHub
, pycryptodome
, pytestCheckHook
, pythonOlder
, rich
, setuptools
, setuptools-scm
}:
buildPythonPackage rec {
pname = "dissect-hypervisor";
version = "3.10";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "fox-it";
repo = "dissect.hypervisor";
rev = "refs/tags/${version}";
hash = "sha256-Ml5U7yc4iqqilL6Y9qF3VU+pa0AXnYVQjVas90TpG30=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
defusedxml
dissect-cstruct
dissect-util
];
passthru.optional-dependencies = {
full = [
pycryptodome
rich
];
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"dissect.hypervisor"
];
meta = with lib; {
description = "Dissect module implementing parsers for various hypervisor disk, backup and configuration files";
homepage = "https://github.com/fox-it/dissect.hypervisor";
changelog = "https://github.com/fox-it/dissect.hypervisor/releases/tag/${version}";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
};
}