basemap-data-{,hires}: fix and add geospatial team (#446560)

This commit is contained in:
Aleksana
2025-09-28 10:34:32 +00:00
committed by GitHub
3 changed files with 6 additions and 7 deletions
@@ -10,7 +10,7 @@ buildPythonPackage rec {
pyproject = true;
inherit (basemap) version src;
sourceRoot = "${src.name}/packages/basemap_data_hires";
sourceRoot = "${src.name}/data/basemap_data_hires";
build-system = [
setuptools
@@ -26,5 +26,6 @@ buildPythonPackage rec {
description = "High-resolution data assets for matplotlib basemap";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ moraxyc ];
teams = with lib.teams; [ geospatial ];
};
}
@@ -9,7 +9,7 @@ buildPythonPackage rec {
format = "setuptools";
inherit (basemap) version src;
sourceRoot = "${src.name}/packages/basemap_data";
sourceRoot = "${src.name}/data/basemap_data";
# no tests
doCheck = false;
@@ -23,6 +23,6 @@ buildPythonPackage rec {
mit
lgpl3Plus
];
maintainers = [ ];
teams = [ teams.geospatial ];
};
}
@@ -26,8 +26,6 @@ buildPythonPackage rec {
hash = "sha256-1T1FTcR99KbpqiYzrd2r5h1wTcygBEU7BLZXZ8uMthU=";
};
sourceRoot = "${src.name}/packages/basemap";
nativeBuildInputs = [
cython
geos
@@ -65,9 +63,9 @@ buildPythonPackage rec {
longDescription = ''
An add-on toolkit for matplotlib that lets you plot data on map projections with
coastlines, lakes, rivers and political boundaries. See
http://matplotlib.github.com/basemap/users/examples.html for examples of what it can do.
https://matplotlib.org/basemap/stable/users/examples.html for examples of what it can do.
'';
maintainers = [ ];
teams = [ teams.geospatial ];
license = with licenses; [
mit
lgpl21