mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
8056f9250c
The setuptools-scm packages gained a setup hook, that sets it to the derivation version automatically, so setting it to that manually has become redundant. This also affects downstream consumers of setuptools-scm, like hatch-vcs or flit-scm.
63 lines
1.2 KiB
Nix
63 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=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|