anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / indexed-gzip / default.nix
blob8bab1b6c5f89f73b888f5e71ad78797f03335de2
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   setuptools,
7   cython,
8   zlib,
9 }:
11 buildPythonPackage rec {
12   pname = "indexed_gzip";
13   version = "1.8.7";
14   pyproject = true;
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-dryq1LLC+lVHj/i+m60ubGGItlX5/clCnwNGrexI92I=";
21   };
23   nativeBuildInputs = [
24     cython
25     setuptools
26   ];
28   buildInputs = [ zlib ];
30   # Too complicated to get to work, not a simple pytest call.
31   doCheck = false;
33   pythonImportsCheck = [ "indexed_gzip" ];
35   meta = with lib; {
36     description = "Python library to seek within compressed gzip files";
37     homepage = "https://github.com/pauldmccarthy/indexed_gzip";
38     license = licenses.zlib;
39     maintainers = with lib.maintainers; [ mxmlnkn ];
40   };