Skip to content

Commit

Permalink
python.pkgs.cartopy: fix build (#58361)
Browse files Browse the repository at this point in the history
fallout of #54182
  • Loading branch information
dotlambda authored Mar 26, 2019
1 parent 2a3167c commit 29cec94
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 29cec94

Please sign in to comment.