diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 16:12:48 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 19:05:36 +0200 |
| commit | 232f9e1cd9799e1f4304781a02b95a029c46dde7 (patch) | |
| tree | b67559e24f8b378fc9d4380fe30ae68c6e420cc8 | |
| parent | badsecret: relax viewstate constraint (diff) | |
| download | nixpkgs-232f9e1cd9799e1f4304781a02b95a029c46dde7.tar.gz | |
python3Packages.fiona: relax cython constraint
| -rw-r--r-- | pkgs/development/python-modules/fiona/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/fiona/default.nix b/pkgs/development/python-modules/fiona/default.nix index 5c3b15d96bef..6a7c8b51bee3 100644 --- a/pkgs/development/python-modules/fiona/default.nix +++ b/pkgs/development/python-modules/fiona/default.nix @@ -39,6 +39,11 @@ buildPythonPackage rec { hash = "sha256-5NN6PBh+6HS9OCc9eC2TcBvkcwtI4DV8qXnz4tlaMXc="; }; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace-fail "cython~=3.0.2" cython + ''; + build-system = [ cython gdal # for gdal-config |
