9 buildPythonPackage rec {
10 pname = "indexed_zstd";
12 format = "setuptools";
14 disabled = pythonOlder "3.6";
17 inherit pname version;
18 hash = "sha256-icCerrv6ihBjSTS4Fsw7qhoA5ha8yegfMVRiIOhTvvY=";
21 nativeBuildInputs = [ cython ];
23 buildInputs = [ zstd.dev ];
28 pythonImportsCheck = [ "indexed_zstd" ];
31 description = "Python library to seek within compressed zstd files";
32 homepage = "https://github.com/martinellimarco/indexed_zstd";
33 license = licenses.mit;
34 maintainers = with lib.maintainers; [ mxmlnkn ];
35 platforms = platforms.all;