diff --git a/pkgs/development/python-modules/dissect-cim/default.nix b/pkgs/development/python-modules/dissect-cim/default.nix new file mode 100644 index 000000000000..a7b815242275 --- /dev/null +++ b/pkgs/development/python-modules/dissect-cim/default.nix @@ -0,0 +1,52 @@ +{ lib +, buildPythonPackage +, dissect-cstruct +, dissect-util +, fetchFromGitHub +, setuptools +, setuptools-scm +, pytestCheckHook +, pythonOlder +}: + +buildPythonPackage rec { + pname = "dissect-cim"; + version = "3.2"; + format = "pyproject"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "fox-it"; + repo = "dissect.cim"; + rev = version; + hash = "sha256-rWlAYndqqZ6l/iwk1u2gG0mtQHvAMYUUEWo23hLykXI="; + }; + + SETUPTOOLS_SCM_PRETEND_VERSION = version; + + nativeBuildInputs = [ + setuptools + setuptools-scm + ]; + + propagatedBuildInputs = [ + dissect-cstruct + dissect-util + ]; + + checkInputs = [ + pytestCheckHook + ]; + + pythonImportsCheck = [ + "dissect.cim" + ]; + + meta = with lib; { + description = "Dissect module implementing a parser for the Windows Common Information Model (CIM) database"; + homepage = "https://github.com/fox-it/dissect.cim"; + license = licenses.agpl3Only; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 527e42913f01..0ab7b8a58ebf 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2477,6 +2477,8 @@ in { diskcache = callPackage ../development/python-modules/diskcache { }; + dissect-cim = callPackage ../development/python-modules/dissect-cim { }; + dissect-clfs = callPackage ../development/python-modules/dissect-clfs { }; dissect-cstruct = callPackage ../development/python-modules/dissect-cstruct { };