From 2f89f575f926e852b74df7e60dfbb4f55a2df6fb Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Mon, 10 Oct 2022 07:26:42 +0200 Subject: [PATCH] fiona: switch from gdal_2 to gdal nixpkgs is dropping gdal_2, and fiona has supported this since 1.8.9 (released 2019-10-21). --- overrides/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/overrides/default.nix b/overrides/default.nix index 038c4bc..a3204dd 100644 --- a/overrides/default.nix +++ b/overrides/default.nix @@ -620,9 +620,9 @@ lib.composeManyExtensions [ fiona = super.fiona.overridePythonAttrs ( old: { - buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.gdal_2 ]; + buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.gdal ]; nativeBuildInputs = [ - pkgs.gdal_2 # for gdal-config + pkgs.gdal # for gdal-config ]; } );