summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 14:43:28 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 19:05:26 +0200
commit9f82a544cf6e5fc63f7c5ab715d5c578ca3a4137 (patch)
treee61e6087f6faa06d2d81efa6888694431a6335b3
parentpython3Packages.cohere: relax httpx-sse constraint (diff)
downloadnixpkgs-9f82a544cf6e5fc63f7c5ab715d5c578ca3a4137.tar.gz
python3Packages.rapidgzip: relax cython constraint
-rw-r--r--pkgs/development/python-modules/rapidgzip/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/rapidgzip/default.nix b/pkgs/development/python-modules/rapidgzip/default.nix
index 4e1e2e7870a4..f3dc069b9fff 100644
--- a/pkgs/development/python-modules/rapidgzip/default.nix
+++ b/pkgs/development/python-modules/rapidgzip/default.nix
@@ -22,7 +22,9 @@ buildPythonPackage rec {
prePatch = ''
# pythonRelaxDeps doesn't work here
- substituteInPlace pyproject.toml --replace-fail "setuptools >= 61.2, < 72" "setuptools"
+ substituteInPlace pyproject.toml \
+ --replace-fail "setuptools >= 61.2, < 72" "setuptools" \
+ --replace-fail "cython >= 3, < 3.1" cython
'';
nativeBuildInputs = [