python3Packages.rasterio: use non-Python gdal

This commit is contained in:
Robert Schütz
2025-12-13 09:04:59 -08:00
parent d1d841bd5d
commit e74ea94ba6
2 changed files with 14 additions and 3 deletions
@@ -6,10 +6,12 @@
# build-system
cython,
gdal,
numpy,
setuptools,
# non-Python dependencies
gdal-cpp,
# dependencies
affine,
attrs,
@@ -53,11 +55,18 @@ buildPythonPackage rec {
build-system = [
cython
gdal
numpy
setuptools
];
nativeBuildInputs = [
gdal-cpp # for gdal-config
];
buildInputs = [
gdal-cpp
];
pythonRelaxDeps = [
"click"
];
+3 -1
View File
@@ -15903,7 +15903,9 @@ self: super: with self; {
raspyrfm-client = callPackage ../development/python-modules/raspyrfm-client { };
rasterio = callPackage ../development/python-modules/rasterio { };
rasterio = callPackage ../development/python-modules/rasterio {
gdal-cpp = pkgs.gdal;
};
ratarmount = callPackage ../development/python-modules/ratarmount { };