nixpkgs/pkgs/by-name/ov/overturemaps/package.nix

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

33 lines
679 B
Nix
Raw Normal View History

2024-08-30 15:12:56 +00:00
{
lib,
python3Packages,
fetchPypi,
}:
python3Packages.buildPythonPackage rec {
pname = "overturemaps";
2024-11-22 13:26:34 +00:00
version = "0.10.0";
2024-08-30 15:12:56 +00:00
pyproject = true;
src = fetchPypi {
inherit pname version;
2024-11-22 13:26:34 +00:00
hash = "sha256-SDfz2qsS0cn8xbgAin9MTKJRyTOtkA6ut4wCCsO8Chg=";
2024-08-30 15:12:56 +00:00
};
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 ];
};
}