overturemaps: init at 0.9.0 (#338317)
This commit is contained in:
commit
579f2539bc
@ -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";
|
||||
|
32
pkgs/by-name/ov/overturemaps/package.nix
Normal file
32
pkgs/by-name/ov/overturemaps/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user