mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
33 lines
679 B
Nix
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 ];
|
|
};
|
|
}
|