13 buildPythonPackage rec {
14 pname = "dissect-sql";
18 disabled = pythonOlder "3.10";
20 src = fetchFromGitHub {
23 rev = "refs/tags/${version}";
24 hash = "sha256-mhZvvPmREBY29U31POH8OfktVdNqNpQVIICPBin5WyI=";
37 nativeCheckInputs = [ pytestCheckHook ];
39 pythonImportsCheck = [ "dissect.sql" ];
42 description = "Dissect module implementing a parsers for the SQLite database file format";
43 homepage = "https://github.com/fox-it/dissect.sql";
44 changelog = "https://github.com/fox-it/dissect.sql/releases/tag/${version}";
45 license = licenses.agpl3Only;
46 maintainers = with maintainers; [ fab ];