spicedb: 1.39.1 -> 1.40.0
[NixPkgs.git] / pkgs / development / python-modules / dissect-ole / default.nix
blob79074e7dfbfae65026a614451358aa6c3547d943
2   lib,
3   buildPythonPackage,
4   dissect-cstruct,
5   dissect-util,
6   fetchFromGitHub,
7   setuptools,
8   setuptools-scm,
9   pythonOlder,
12 buildPythonPackage rec {
13   pname = "dissect-ole";
14   version = "3.9";
15   pyproject = true;
17   disabled = pythonOlder "3.9";
19   src = fetchFromGitHub {
20     owner = "fox-it";
21     repo = "dissect.ole";
22     tag = version;
23     hash = "sha256-MW76O7JH9hkDlIncPqoydZ8bzpmXqmvvm0i1IOF6Pnk=";
24   };
26   build-system = [
27     setuptools
28     setuptools-scm
29   ];
31   dependencies = [
32     dissect-cstruct
33     dissect-util
34   ];
36   # Module has no tests
37   doCheck = false;
39   pythonImportsCheck = [ "dissect.ole" ];
41   meta = with lib; {
42     description = "Dissect module implementing a parser for the Object Linking & Embedding (OLE) format";
43     homepage = "https://github.com/fox-it/dissect.ole";
44     changelog = "https://github.com/fox-it/dissect.ole/releases/tag/${version}";
45     license = licenses.agpl3Only;
46     maintainers = with maintainers; [ fab ];
47   };