From 24a3c59b412141826b3df39b9b19e92af0b8ab2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Fern=C3=A1ndez=20L=C3=B3pez?= Date: Thu, 2 Jul 2026 23:48:35 +0200 Subject: [PATCH] overturemaps: 0.20.0 -> 1.0.1 --- pkgs/by-name/ov/overturemaps/package.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ov/overturemaps/package.nix b/pkgs/by-name/ov/overturemaps/package.nix index d5ab35d1c6a0..039ed509d483 100644 --- a/pkgs/by-name/ov/overturemaps/package.nix +++ b/pkgs/by-name/ov/overturemaps/package.nix @@ -6,12 +6,12 @@ python3Packages.buildPythonPackage rec { pname = "overturemaps"; - version = "0.20.0"; + version = "1.0.1"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-rvc1MpqCdRGuMWS5CSDev9SFgyVX8VczopXU/lWAyxg="; + hash = "sha256-yKl13Y9kRCGHzoqeZIQEac/PrByTCtCQFaz8sUgeVIs="; }; nativeBuildInputs = with python3Packages; [ @@ -20,13 +20,19 @@ python3Packages.buildPythonPackage rec { dependencies = with python3Packages; [ click + colorama geopandas numpy orjson pyarrow + pyfiglet shapely + tqdm ]; + # Drop once tqdm 4.67.3 reaches master + pythonRelaxDeps = [ "tqdm" ]; + pythonImportsCheck = [ "overturemaps" ]; meta = {