Unverified Commit 579f2539 authored by Colin's avatar Colin Committed by GitHub
Browse files

overturemaps: init at 0.9.0 (#338317)

parents 7412ee1b 9cd5ad85
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}