pythonPackages.cartopy: init at 0.17.0
This commit is contained in:
parent
443b5e856d
commit
39d1108b80
46
pkgs/development/python-modules/cartopy/default.nix
Normal file
46
pkgs/development/python-modules/cartopy/default.nix
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{ buildPythonPackage, lib, fetchPypi
|
||||||
|
, pytest, filelock, mock, pep8
|
||||||
|
, cython, isPy37, glibcLocales
|
||||||
|
, six, pyshp, shapely, geos, proj, numpy
|
||||||
|
, gdal, pillow, matplotlib, pyepsg, pykdtree, scipy, owslib, fiona
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "cartopy";
|
||||||
|
version = "0.17.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit version;
|
||||||
|
pname = "Cartopy";
|
||||||
|
sha256 = "0q9ckfi37cxj7jwnqnzij62vwcf4krccx576vv5lhvpgvplxjjs2";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ filelock mock pytest pep8 ];
|
||||||
|
|
||||||
|
# several tests require network connectivity: we disable them
|
||||||
|
checkPhase = ''
|
||||||
|
export HOME=$(mktemp -d)
|
||||||
|
pytest --pyargs cartopy \
|
||||||
|
-m "not network and not natural_earth" \
|
||||||
|
-k "not test_nightshade_image"
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [ cython glibcLocales ];
|
||||||
|
LC_ALL = "en_US.UTF-8";
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
# required
|
||||||
|
six pyshp shapely geos proj numpy
|
||||||
|
|
||||||
|
# optional
|
||||||
|
gdal pillow matplotlib pyepsg pykdtree scipy fiona owslib
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Process geospatial data to create maps and perform analyses";
|
||||||
|
license = licenses.lgpl3;
|
||||||
|
homepage = https://scitools.org.uk/cartopy/docs/latest/;
|
||||||
|
maintainers = with maintainers; [ mredaelli ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -1136,6 +1136,8 @@ in {
|
|||||||
|
|
||||||
carrot = callPackage ../development/python-modules/carrot {};
|
carrot = callPackage ../development/python-modules/carrot {};
|
||||||
|
|
||||||
|
cartopy = callPackage ../development/python-modules/cartopy {};
|
||||||
|
|
||||||
case = callPackage ../development/python-modules/case {};
|
case = callPackage ../development/python-modules/case {};
|
||||||
|
|
||||||
cassandra-driver = callPackage ../development/python-modules/cassandra-driver { };
|
cassandra-driver = callPackage ../development/python-modules/cassandra-driver { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user