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 = {