From 0d8e83034ce919d7c8d3153e9a7b872d893e4477 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Tue, 28 Oct 2025 17:31:50 +0100 Subject: [PATCH] gnu: python-fiona: Update to 1.9.6. * gnu/packages/geo.scm (python-fiona): Update to 1.9.6. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [propagated-inputs]: Remove python-importlib-metadata, python-six. Replace python-click-plugins by python-click-plugins-1. [native-inputs]: Remove python-wheel. Change-Id: I5f47367f87ea0cca59432fcf5bdd07484c53f35e Signed-off-by: Sharlatan Hellseher --- gnu/packages/geo.scm | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 6819f7490c..26426e36f5 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -1196,14 +1196,16 @@ projections and coordinate transformations library.") (define-public python-fiona (package (name "python-fiona") - (version "1.9.4.post1") + (version "1.9.6") (source (origin - (method url-fetch) - (uri (pypi-uri "Fiona" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/Toblerity/Fiona") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 - "083120rqc4rrqzgmams0yjd8b1h4p5xm4n9fnxg064ymw3vx6yan")))) + (base32 "08whhjrspp194qasjhr9kf70fl342ms47k78rwpcf5q6ikf0rfii")))) (build-system pyproject-build-system) (arguments (list @@ -1228,10 +1230,8 @@ projections and coordinate transformations library.") (list python-attrs python-certifi python-click - python-click-plugins - python-cligj - python-importlib-metadata - python-six)) + python-click-plugins-1 + python-cligj)) (native-inputs (list gdal ; for gdal-config python-boto3 @@ -1239,8 +1239,7 @@ projections and coordinate transformations library.") python-pytest python-pytest-cov python-pytz - python-setuptools - python-wheel)) + python-setuptools)) (home-page "https://github.com/Toblerity/Fiona") (synopsis "Fiona reads and writes spatial data files")