Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / dissect-cim / default.nix
blob37de761ca567f16e213e101135e9d1f40c97e817
1 { lib
2 , buildPythonPackage
3 , dissect-cstruct
4 , dissect-util
5 , fetchFromGitHub
6 , setuptools
7 , setuptools-scm
8 , pytestCheckHook
9 , pythonOlder
12 buildPythonPackage rec {
13   pname = "dissect-cim";
14   version = "3.7";
15   format = "pyproject";
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "fox-it";
21     repo = "dissect.cim";
22     rev = "refs/tags/${version}";
23     hash = "sha256-+HHjDUSepAEebMD5ckjXbfgA4AKlNMBYHwxDq+jdhxw=";
24   };
26   SETUPTOOLS_SCM_PRETEND_VERSION = version;
28   nativeBuildInputs = [
29     setuptools
30     setuptools-scm
31   ];
33   propagatedBuildInputs = [
34     dissect-cstruct
35     dissect-util
36   ];
38   nativeCheckInputs = [
39     pytestCheckHook
40   ];
42   pythonImportsCheck = [
43     "dissect.cim"
44   ];
46   meta = with lib; {
47     description = "Dissect module implementing a parser for the Windows Common Information Model (CIM) database";
48     homepage = "https://github.com/fox-it/dissect.cim";
49     changelog = "https://github.com/fox-it/dissect.cim/releases/tag/${version}";
50     license = licenses.agpl3Only;
51     maintainers = with maintainers; [ fab ];
52   };