python3Packages.gstools-cython and python3Packages.pykrige: relax overly strict Cython dependency (#440738)

Changed files
+7 -1
pkgs
development
python-modules
gstools-cython
pykrige
+5
pkgs/development/python-modules/gstools-cython/default.nix
···
hash = "sha256-Kzn/ThLjTGy3ZYIkTwCV1wi22c7rWo4u/L3llppC6wQ=";
};
+
postPatch = ''
+
substituteInPlace pyproject.toml \
+
--replace-fail "Cython>=3.0.10,<3.1.0" "Cython>=3.1.0,<4.0.0"
+
'';
+
build-system = [
cython
extension-helpers
+2 -1
pkgs/development/python-modules/pykrige/default.nix
···
postPatch = ''
substituteInPlace pyproject.toml \
-
--replace-fail "numpy>=2.0.0rc1,<2.3; python_version >= '3.9'" "numpy>=2.0.0";
+
--replace-fail "numpy>=2.0.0rc1,<2.3; python_version >= '3.9'" "numpy>=2.0.0" \
+
--replace-fail "Cython>=3.0.10,<3.1.0" "Cython>=3.1.0,<4.0.0"
'';
build-system = [