anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / dissect-sql / default.nix
blobe2b3341dfdaae9c7ac40fdfe817b8132ef48cd41
2   lib,
3   buildPythonPackage,
4   dissect-cstruct,
5   dissect-util,
6   fetchFromGitHub,
7   pytestCheckHook,
8   pythonOlder,
9   setuptools,
10   setuptools-scm,
13 buildPythonPackage rec {
14   pname = "dissect-sql";
15   version = "3.10";
16   pyproject = true;
18   disabled = pythonOlder "3.10";
20   src = fetchFromGitHub {
21     owner = "fox-it";
22     repo = "dissect.sql";
23     rev = "refs/tags/${version}";
24     hash = "sha256-mhZvvPmREBY29U31POH8OfktVdNqNpQVIICPBin5WyI=";
25   };
27   build-system = [
28     setuptools
29     setuptools-scm
30   ];
32   dependencies = [
33     dissect-cstruct
34     dissect-util
35   ];
37   nativeCheckInputs = [ pytestCheckHook ];
39   pythonImportsCheck = [ "dissect.sql" ];
41   meta = with lib; {
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 ];
47   };