Merge pull request #224135 from kirillrdy/cartopy

python3Packages.cartopy: fix failing tests with proj 9.2

authored by

Ilan Joselevich and committed by
GitHub
8b070b25 d844391b

+14
+14
pkgs/development/python-modules/cartopy/default.nix
··· 2 2 , buildPythonPackage 3 3 , pythonOlder 4 4 , fetchPypi 5 + , fetchpatch 5 6 , cython 6 7 , setuptools-scm 7 8 , geos ··· 33 34 pname = "Cartopy"; 34 35 hash = "sha256-idVklxLIWCIxxuEYJaBMhfbwzulNu4nk2yPqvKHMJQo="; 35 36 }; 37 + 38 + patches = [ 39 + # https://github.com/SciTools/cartopy/pull/2163 40 + (fetchpatch { 41 + url = "https://github.com/SciTools/cartopy/commit/7fb57e294914dbda0ebe8caaeac4deffe5e71639.patch"; 42 + hash = "sha256-qc14q+v2IMC+1NQ+OqLjUfJA3Sr5txniqS7CTQ6c7LI="; 43 + }) 44 + # https://github.com/SciTools/cartopy/pull/2130 45 + (fetchpatch { 46 + url = "https://github.com/SciTools/cartopy/commit/6b4572ba1a8a877f28e25dfe9559c14b7a565958.patch"; 47 + hash = "sha256-0u6VJMrvoD9bRLHiQV4HQCKDyWEb9dDS2A3rjm6uqYw="; 48 + }) 49 + ]; 36 50 37 51 nativeBuildInputs = [ 38 52 cython