Files
nixpkgs/pkgs/development/python-modules/indexed-zstd/default.nix
2026-03-24 11:15:44 +00:00

41 lines
768 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
cython,
zstd,
}:
buildPythonPackage rec {
pname = "indexed_zstd";
version = "1.7.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-DspqT15rkF6qGs09l7Gt40B4qClIOkODn1zy7+lxUPQ=";
};
nativeBuildInputs = [
cython
setuptools
];
buildInputs = [ zstd.dev ];
postPatch = "cython -3 --cplus indexed_zstd/indexed_zstd.pyx";
# has no tests
doCheck = false;
pythonImportsCheck = [ "indexed_zstd" ];
meta = {
description = "Python library to seek within compressed zstd files";
homepage = "https://github.com/martinellimarco/indexed_zstd";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mxmlnkn ];
};
}