Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
679 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
python3Packages,
fetchPypi,
}:
python3Packages.buildPythonPackage rec {
pname = "overturemaps";
version = "0.16.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Q24jVbg0AUX8a4dho3uiCvGjTL4n13Yl/8k19T86b1Y=";
};
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 ];
};
}