nixpkgs/pkgs/by-name/ov/overturemaps/package.nix
2024-11-22 13:26:34 +00:00

33 lines
679 B
Nix

{
lib,
python3Packages,
fetchPypi,
}:
python3Packages.buildPythonPackage rec {
pname = "overturemaps";
version = "0.10.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-SDfz2qsS0cn8xbgAin9MTKJRyTOtkA6ut4wCCsO8Chg=";
};
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 ];
};
}