python3Packages.rapidgzip: 0.14.5 -> 0.16.0

https://github.com/mxmlnkn/rapidgzip/blob/rapidgzip-v0.16.0/python/rapidgzip/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:38:46 +01:00
parent 09f6084978
commit a108c341a6
@@ -9,24 +9,23 @@
buildPythonPackage rec {
pname = "rapidgzip";
version = "0.14.5";
version = "0.16.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-+u1GAToaYqUZPElhWolmg+pcFO1HRLy0vRhpsUIFUdg=";
hash = "sha256-ixJPKbwS3kJJq4HoPlrTXmd0KhqP9Ky2G3TA2f2hwU4=";
};
prePatch = ''
# pythonRelaxDeps doesn't work here
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools >= 61.2, < 72" "setuptools" \
--replace-fail "cython >= 3, < 3.1" cython
--replace-fail "setuptools >= 61.2, < 72" setuptools
'';
nativeBuildInputs = [
nativeBuildInputs = [ nasm ];
build-system = [
cython
nasm
setuptools
];