13 buildPythonPackage rec {
14 pname = "dissect-ntfs";
18 disabled = pythonOlder "3.11";
20 src = fetchFromGitHub {
22 repo = "dissect.ntfs";
23 rev = "refs/tags/${version}";
24 hash = "sha256-DOxyPlHBv4PEbHeGC/pj2QzbGhKFjw6QOAJmhq6Fc3k=";
37 nativeCheckInputs = [ pytestCheckHook ];
39 pythonImportsCheck = [ "dissect.ntfs" ];
42 # Test is very time consuming
47 description = "Dissect module implementing a parser for the NTFS file system";
48 homepage = "https://github.com/fox-it/dissect.ntfs";
49 changelog = "https://github.com/fox-it/dissect.ntfs/releases/tag/${version}";
50 license = licenses.agpl3Only;
51 maintainers = with maintainers; [ fab ];