10 buildPythonPackage rec {
11 pname = "indexed_gzip";
15 disabled = pythonOlder "3.7";
18 inherit pname version;
19 hash = "sha256-dryq1LLC+lVHj/i+m60ubGGItlX5/clCnwNGrexI92I=";
22 nativeBuildInputs = [ cython setuptools ];
24 buildInputs = [ zlib ];
26 # Too complicated to get to work, not a simple pytest call.
29 pythonImportsCheck = [ "indexed_gzip" ];
32 description = "Python library to seek within compressed gzip files";
33 homepage = "https://github.com/pauldmccarthy/indexed_gzip";
34 license = licenses.zlib;
35 maintainers = with lib.maintainers; [ mxmlnkn ];