diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 14:43:28 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 19:05:26 +0200 |
| commit | 9f82a544cf6e5fc63f7c5ab715d5c578ca3a4137 (patch) | |
| tree | e61e6087f6faa06d2d81efa6888694431a6335b3 | |
| parent | python3Packages.cohere: relax httpx-sse constraint (diff) | |
| download | nixpkgs-9f82a544cf6e5fc63f7c5ab715d5c578ca3a4137.tar.gz | |
python3Packages.rapidgzip: relax cython constraint
| -rw-r--r-- | pkgs/development/python-modules/rapidgzip/default.nix | 4 |
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 = [ |
