summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-01-12 02:36:54 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-01-16 02:36:23 +0100
commit878c920437255850408c8f9777ace404d362a630 (patch)
treefcb9aba90923c5626b10d503e661b92d5d56d774 /pkgs/development
parent492e5e07c9f2d622e776fcc2887ecded5edf0a43 (diff)
downloadnixpkgs-878c920437255850408c8f9777ace404d362a630.tar
nixpkgs-878c920437255850408c8f9777ace404d362a630.tar.gz
nixpkgs-878c920437255850408c8f9777ace404d362a630.tar.bz2
nixpkgs-878c920437255850408c8f9777ace404d362a630.tar.lz
nixpkgs-878c920437255850408c8f9777ace404d362a630.tar.xz
nixpkgs-878c920437255850408c8f9777ace404d362a630.tar.zst
nixpkgs-878c920437255850408c8f9777ace404d362a630.zip
gdal: use python3
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/gdal/2.4.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gdal/2.4.nix b/pkgs/development/libraries/gdal/2.4.nix
index 234d986b21f..0e57160f194 100644
--- a/pkgs/development/libraries/gdal/2.4.nix
+++ b/pkgs/development/libraries/gdal/2.4.nix
@@ -1,5 +1,5 @@
 { lib, stdenv, fetchurl, libjpeg, libtiff, zlib
-, postgresql, libmysqlclient, libgeotiff, python2Packages, proj, geos, openssl
+, postgresql, libmysqlclient, libgeotiff, python3Packages, proj, geos, openssl
 , libpng, sqlite, libspatialite, poppler, hdf4, qhull, giflib, expat
 , libiconv, libxml2
 , netcdfSupport ? true, netcdf, hdf5, curl
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ libjpeg libtiff libgeotiff libpng proj openssl sqlite
     libspatialite poppler hdf4 qhull giflib expat libxml2 proj ]
-  ++ (with python2Packages; [ python numpy wrapPython ])
+  ++ (with python3Packages; [ python numpy wrapPython ])
   ++ lib.optional stdenv.isDarwin libiconv
   ++ lib.optionals netcdfSupport [ netcdf hdf5 curl ];