Skip to content

Commit

Permalink
python.pkgs.cartopy: fix build
Browse files Browse the repository at this point in the history
fallout of NixOS#54182
  • Loading branch information
Robert Schütz committed Mar 26, 2019
1 parent 2d14a88 commit 66804c9
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions pkgs/development/python-modules/cartopy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,19 @@ buildPythonPackage rec {
-k "not test_nightshade_image"
'';

buildInputs = [ cython glibcLocales ];
LC_ALL = "en_US.UTF-8";
nativeBuildInputs = [
cython
geos # for geos-config
proj
];

buildInputs = [
geos proj
];

propagatedBuildInputs = [
# required
six pyshp shapely geos proj numpy
six pyshp shapely numpy

# optional
gdal pillow matplotlib pyepsg pykdtree scipy fiona owslib
Expand Down

0 comments on commit 66804c9

Please sign in to comment.