overturemaps: init at 0.9.0 (#338317)

This commit is contained in:
Colin 2024-11-22 04:45:44 +00:00 committed by GitHub
commit 579f2539bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 39 additions and 0 deletions

View File

@ -4578,6 +4578,13 @@
githubId = 1707779;
name = "Chris Ertel";
};
crimeminister = {
email = "robert@crimeminister.org";
name = "Robert Medeiros";
github = "crimeminister";
githubId = 29072;
keys = [ { fingerprint = "E3BD A35E 590A 8D29 701A 9723 F448 7FA0 4BC6 44F2"; } ];
};
crinklywrappr = {
email = "crinklywrappr@pm.me";
name = "Daniel Fitzpatrick";

View File

@ -0,0 +1,32 @@
{
lib,
python3Packages,
fetchPypi,
}:
python3Packages.buildPythonPackage rec {
pname = "overturemaps";
version = "0.9.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-JsgufE8Xmw7xXVypM+g3Vjmf5fL/FQRxddGSpQ762PQ=";
};
build-system = with python3Packages; [ poetry-core ];
dependencies = with python3Packages; [
click
pyarrow
shapely
];
meta = {
description = "Official command-line tool of the Overture Maps Foundation";
homepage = "https://overturemaps.org/";
mainProgram = "overturemaps";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ crimeminister ];
};
}