ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / dissect-volume / default.nix
blob8e409a846cc3a0695aad1ec3cd84a1929ee6533f
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-volume";
14   version = "3.1";
15   format = "pyproject";
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "fox-it";
21     repo = "dissect.volume";
22     rev = version;
23     hash = "sha256-9SbluaB2wV4gOCry5c7ZLABMwhGfnYg7dTPdKMXYSZM=";
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   checkInputs = [
39     pytestCheckHook
40   ];
42   pythonImportsCheck = [
43     "dissect.volume"
44   ];
46   meta = with lib; {
47     description = "Dissect module implementing various utility functions for the other Dissect modules";
48     homepage = "https://github.com/fox-it/dissect.volume";
49     license = licenses.agpl3Only;
50     maintainers = with maintainers; [ fab ];
51   };