overturemaps: 0.20.0 -> 1.0.1 (#537954)

This commit is contained in:
Alexis Hildebrandt
2026-07-03 17:36:15 +00:00
committed by GitHub
+8 -2
View File
@@ -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 = {