11 buildPythonPackage rec {
12 pname = "indexed_gzip";
16 disabled = pythonOlder "3.7";
19 inherit pname version;
20 hash = "sha256-dryq1LLC+lVHj/i+m60ubGGItlX5/clCnwNGrexI92I=";
28 buildInputs = [ zlib ];
30 # Too complicated to get to work, not a simple pytest call.
33 pythonImportsCheck = [ "indexed_gzip" ];
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 ];