11 buildPythonPackage rec {
12 pname = "indexed_zstd";
16 disabled = pythonOlder "3.6";
19 inherit pname version;
20 hash = "sha256-i3Q3j5Rh/OqxdSFbZeHEiYZN2zS9gWBYk2pifwzKOos=";
28 buildInputs = [ zstd.dev ];
30 postPatch = "cython -3 --cplus indexed_zstd/indexed_zstd.pyx";
35 pythonImportsCheck = [ "indexed_zstd" ];
38 description = "Python library to seek within compressed zstd files";
39 homepage = "https://github.com/martinellimarco/indexed_zstd";
40 license = licenses.mit;
41 maintainers = with lib.maintainers; [ mxmlnkn ];