1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, pythonAtLeast 5, basemap 6, cython 7, geos 8, numpy 9, matplotlib 10, pyproj 11, pyshp 12, python 13, setuptools 14}: 15 16buildPythonPackage rec { 17 pname = "basemap-data"; 18 inherit (basemap) version src; 19 20 sourceRoot = "source/packages/basemap_data"; 21 22 # no tests 23 doCheck = false; 24 25 pythonImportsCheck = [ "mpl_toolkits.basemap_data" ]; 26 27 meta = with lib; { 28 homepage = "https://matplotlib.org/basemap/"; 29 description = "Data assets for matplotlib basemap"; 30 license = with licenses; [ mit lgpl3Plus ]; 31 maintainers = with maintainers; [ ]; 32 }; 33}