overturemaps: 0.20.0 -> 1.0.1

This commit is contained in:
Rafael Fernández López 2026-07-02 23:48:35 +02:00
commit 24a3c59b41
No known key found for this signature in database
GPG key ID: A07C55EEE4CCE570

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