biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / dissect-cim / default.nix
blob9c841cbf3e157697aed5fb645438a3b9a6d139bd
2   lib,
3   buildPythonPackage,
4   dissect-cstruct,
5   dissect-util,
6   fetchFromGitHub,
7   setuptools,
8   setuptools-scm,
9   pytestCheckHook,
10   pythonOlder,
13 buildPythonPackage rec {
14   pname = "dissect-cim";
15   version = "3.10";
16   pyproject = true;
18   disabled = pythonOlder "3.10";
20   src = fetchFromGitHub {
21     owner = "fox-it";
22     repo = "dissect.cim";
23     rev = "refs/tags/${version}";
24     hash = "sha256-7Mv8yiWEs/mj/JKDrD1BxT75tQr13VgGj0yHdRltcYM=";
25   };
27   build-system = [
28     setuptools
29     setuptools-scm
30   ];
32   dependencies = [
33     dissect-cstruct
34     dissect-util
35   ];
37   nativeCheckInputs = [ pytestCheckHook ];
39   pythonImportsCheck = [ "dissect.cim" ];
41   meta = with lib; {
42     description = "Dissect module implementing a parser for the Windows Common Information Model (CIM) database";
43     homepage = "https://github.com/fox-it/dissect.cim";
44     changelog = "https://github.com/fox-it/dissect.cim/releases/tag/${version}";
45     license = licenses.agpl3Only;
46     maintainers = with maintainers; [ fab ];
47   };