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