1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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 <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves
2025-10-28 17:31:50 +01:00
committed by Sharlatan Hellseher
parent f8ed3378cd
commit 0d8e83034c

View File

@@ -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")