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).
This commit is contained in:
Yorick van Pelt 2022-10-10 07:26:42 +02:00
parent 5821dfe589
commit 2f89f575f9
No known key found for this signature in database
GPG key ID: A36E70F9DC014A15

View file

@ -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
];
}
);