From 8a9d435c4a49c48aeeb233e8f1b93f604c01c19a Mon Sep 17 00:00:00 2001 From: Ivan Mincik Date: Wed, 6 Dec 2023 16:00:45 +0100 Subject: [PATCH] python3Packages.pygeos: use GEOS 3.11 --- pkgs/development/python-modules/pygeos/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pygeos/default.nix b/pkgs/development/python-modules/pygeos/default.nix index 22f76d36c46d..3a5759dfb67a 100644 --- a/pkgs/development/python-modules/pygeos/default.nix +++ b/pkgs/development/python-modules/pygeos/default.nix @@ -2,7 +2,7 @@ , buildPythonPackage , fetchPypi , python -, geos +, geos311 , pytestCheckHook , cython , numpy @@ -18,7 +18,7 @@ buildPythonPackage rec { }; nativeBuildInputs = [ - geos # for geos-config + geos311 # for geos-config cython ];