mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00
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:
parent
5821dfe589
commit
2f89f575f9
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
];
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue