fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
37 lines
639 B
Nix
37 lines
639 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonAtLeast,
|
|
basemap,
|
|
cython,
|
|
geos,
|
|
numpy,
|
|
matplotlib,
|
|
pyproj,
|
|
pyshp,
|
|
python,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "basemap-data";
|
|
format = "setuptools";
|
|
inherit (basemap) version src;
|
|
|
|
sourceRoot = "${src.name}/packages/basemap_data";
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "mpl_toolkits.basemap_data" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://matplotlib.org/basemap/";
|
|
description = "Data assets for matplotlib basemap";
|
|
license = with licenses; [
|
|
mit
|
|
lgpl3Plus
|
|
];
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|