python3Packages.cartopy: 0.19.0.post1 -> 0.20.0

This commit is contained in:
Robert Schütz 2021-09-18 16:36:00 -07:00
parent 68ef9d8c66
commit 0b97370eb9

View file

@ -8,14 +8,21 @@
buildPythonPackage rec {
pname = "cartopy";
version = "0.19.0.post1";
version = "0.20.0";
src = fetchPypi {
inherit version;
pname = "Cartopy";
sha256 = "0xnm8z3as3hriivdfd26s6vn5b63gb46x6vxw6gh1mwfm5rlg2sb";
sha256 = "eae58aff26806e63cf115b2bce9477cedc4aa9f578c5e477b2c25cfa404f2b7a";
};
postPatch = ''
# https://github.com/SciTools/cartopy/issues/1880
substituteInPlace lib/cartopy/tests/test_crs.py \
--replace "test_osgb(" "dont_test_osgb(" \
--replace "test_epsg(" "dont_test_epsg("
'';
buildInputs = [
geos proj
];