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

authored by

Aleksana and committed by
GitHub
7ceeb354 7aad431e

+6 -7
+2 -1
pkgs/development/python-modules/basemap-data-hires/default.nix
··· 10 pyproject = true; 11 inherit (basemap) version src; 12 13 - sourceRoot = "${src.name}/packages/basemap_data_hires"; 14 15 build-system = [ 16 setuptools ··· 26 description = "High-resolution data assets for matplotlib basemap"; 27 license = lib.licenses.lgpl3Plus; 28 maintainers = with lib.maintainers; [ moraxyc ]; 29 }; 30 }
··· 10 pyproject = true; 11 inherit (basemap) version src; 12 13 + sourceRoot = "${src.name}/data/basemap_data_hires"; 14 15 build-system = [ 16 setuptools ··· 26 description = "High-resolution data assets for matplotlib basemap"; 27 license = lib.licenses.lgpl3Plus; 28 maintainers = with lib.maintainers; [ moraxyc ]; 29 + teams = with lib.teams; [ geospatial ]; 30 }; 31 }
+2 -2
pkgs/development/python-modules/basemap-data/default.nix
··· 9 format = "setuptools"; 10 inherit (basemap) version src; 11 12 - sourceRoot = "${src.name}/packages/basemap_data"; 13 14 # no tests 15 doCheck = false; ··· 23 mit 24 lgpl3Plus 25 ]; 26 - maintainers = [ ]; 27 }; 28 }
··· 9 format = "setuptools"; 10 inherit (basemap) version src; 11 12 + sourceRoot = "${src.name}/data/basemap_data"; 13 14 # no tests 15 doCheck = false; ··· 23 mit 24 lgpl3Plus 25 ]; 26 + teams = [ teams.geospatial ]; 27 }; 28 }
+2 -4
pkgs/development/python-modules/basemap/default.nix
··· 26 hash = "sha256-1T1FTcR99KbpqiYzrd2r5h1wTcygBEU7BLZXZ8uMthU="; 27 }; 28 29 - sourceRoot = "${src.name}/packages/basemap"; 30 - 31 nativeBuildInputs = [ 32 cython 33 geos ··· 65 longDescription = '' 66 An add-on toolkit for matplotlib that lets you plot data on map projections with 67 coastlines, lakes, rivers and political boundaries. See 68 - http://matplotlib.github.com/basemap/users/examples.html for examples of what it can do. 69 ''; 70 - maintainers = [ ]; 71 license = with licenses; [ 72 mit 73 lgpl21
··· 26 hash = "sha256-1T1FTcR99KbpqiYzrd2r5h1wTcygBEU7BLZXZ8uMthU="; 27 }; 28 29 nativeBuildInputs = [ 30 cython 31 geos ··· 63 longDescription = '' 64 An add-on toolkit for matplotlib that lets you plot data on map projections with 65 coastlines, lakes, rivers and political boundaries. See 66 + https://matplotlib.org/basemap/stable/users/examples.html for examples of what it can do. 67 ''; 68 + teams = [ teams.geospatial ]; 69 license = with licenses; [ 70 mit 71 lgpl21