a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, dissect-cstruct
|
|
, dissect-util
|
|
, fetchFromGitHub
|
|
, pycryptodome
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, rich
|
|
, setuptools
|
|
, setuptools-scm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dissect-hypervisor";
|
|
version = "3.3";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fox-it";
|
|
repo = "dissect.hypervisor";
|
|
rev = version;
|
|
hash = "sha256-Q7lbFr+gc6inQEJT54DXjpyyis5GxrKQHI5qqa1INKo=";
|
|
};
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
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";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|