9 buildPythonPackage rec {
10 pname = "indexed_gzip";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
17 inherit pname version;
18 hash = "sha256-h9JgYq9KxmknaRuMgq+5YWA8tUaFk+lclkqdNAnr/cI=";
21 nativeBuildInputs = [ cython ];
23 buildInputs = [ zlib ];
25 # Too complicated to get to work, not a simple pytest call.
28 pythonImportsCheck = [ "indexed_gzip" ];
31 description = "Python library to seek within compressed gzip files";
32 homepage = "https://github.com/pauldmccarthy/indexed_gzip";
33 license = licenses.zlib;
34 maintainers = with lib.maintainers; [ mxmlnkn ];
35 platforms = platforms.all;