about summary refs log tree commit diff
path: root/pkgs/development/python-modules/basemap
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2021-04-11 16:28:33 +0100
committerLancelot SIX <lsix@lancelotsix.com>2021-04-12 00:51:58 +0100
commit75eb8e50dff9828b9e1a1ea41ea6a6767399bd6f (patch)
treec200688f6bfcbba73d4e8b35edfba33aff22c90e /pkgs/development/python-modules/basemap
parent140e41442f68b42b08685f5e8ccf66f5e16d87ed (diff)
python3Pakcages.basemap: mark broken for python >= 3.9
Diffstat (limited to 'pkgs/development/python-modules/basemap')
-rw-r--r--pkgs/development/python-modules/basemap/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/basemap/default.nix b/pkgs/development/python-modules/basemap/default.nix
index 2fadda388ba07..c3d29d932442a 100644
--- a/pkgs/development/python-modules/basemap/default.nix
+++ b/pkgs/development/python-modules/basemap/default.nix
@@ -1,6 +1,7 @@
 { lib
 , buildPythonPackage
 , fetchFromGitHub
+, pythonAtLeast
 , numpy
 , matplotlib
 , pillow
@@ -43,6 +44,7 @@ buildPythonPackage rec {
       http://matplotlib.github.com/basemap/users/examples.html for examples of what it can do.
     '';
     license = with licenses; [ mit gpl2 ];
+    broken = pythonAtLeast "3.9";
   };
 
 }