python3Pakcages.basemap: mark broken for python >= 3.9

This commit is contained in:
Lancelot SIX 2021-04-11 16:28:33 +01:00
parent 140e41442f
commit 75eb8e50df
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pythonAtLeast
, numpy , numpy
, matplotlib , matplotlib
, pillow , pillow
@ -43,6 +44,7 @@ buildPythonPackage rec {
http://matplotlib.github.com/basemap/users/examples.html for examples of what it can do. http://matplotlib.github.com/basemap/users/examples.html for examples of what it can do.
''; '';
license = with licenses; [ mit gpl2 ]; license = with licenses; [ mit gpl2 ];
broken = pythonAtLeast "3.9";
}; };
} }