Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / dissect-ntfs / default.nix
blob61f3eaa6456067f503f118c2f4fdf37483e13f21
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-ntfs";
14   version = "3.9";
15   format = "pyproject";
17   disabled = pythonOlder "3.9";
19   src = fetchFromGitHub {
20     owner = "fox-it";
21     repo = "dissect.ntfs";
22     rev = "refs/tags/${version}";
23     hash = "sha256-gjmxoxz4Qf2FsCP72siEpVLeqlZfvhuFZHSGr1n+cY0=";
24   };
26   nativeBuildInputs = [
27     setuptools
28     setuptools-scm
29   ];
31   propagatedBuildInputs = [
32     dissect-cstruct
33     dissect-util
34   ];
36   nativeCheckInputs = [
37     pytestCheckHook
38   ];
40   pythonImportsCheck = [
41     "dissect.ntfs"
42   ];
44   disabledTestPaths = [
45     # Test is very time consuming
46     "tests/test_index.py"
47   ];
49   meta = with lib; {
50     description = "Dissect module implementing a parser for the NTFS file system";
51     homepage = "https://github.com/fox-it/dissect.ntfs";
52     changelog = "https://github.com/fox-it/dissect.ntfs/releases/tag/${version}";
53     license = licenses.agpl3Only;
54     maintainers = with maintainers; [ fab ];
55   };