From 31a623c933a72c089fe3be489707acfd2ad80a74 Mon Sep 17 00:00:00 2001 From: Robert Medeiros Date: Wed, 10 Dec 2025 17:10:34 -0500 Subject: [PATCH] overturemaps: 0.18.0 -> 0.19.0 --- pkgs/by-name/ov/overturemaps/package.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ov/overturemaps/package.nix b/pkgs/by-name/ov/overturemaps/package.nix index ca635b3bd7d6..2b84d362553b 100644 --- a/pkgs/by-name/ov/overturemaps/package.nix +++ b/pkgs/by-name/ov/overturemaps/package.nix @@ -6,22 +6,28 @@ python3Packages.buildPythonPackage rec { pname = "overturemaps"; - version = "0.17.0"; + version = "0.19.0"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-s8/yV3eneSsQgK8vJqhEBoidgLurz84XgS7qiuLWOEQ="; + hash = "sha256-y91x+S6YKBldy7OWIXCJQ5HuR3KrFRdfBkfMmkaeXy8="; }; - build-system = with python3Packages; [ poetry-core ]; + nativeBuildInputs = with python3Packages; [ + hatchling + ]; dependencies = with python3Packages; [ click + geopandas + numpy pyarrow shapely ]; + pythonImportsCheck = [ "overturemaps" ]; + meta = { description = "Official command-line tool of the Overture Maps Foundation"; homepage = "https://overturemaps.org/";