~ruther/guix-local

0d8e83034ce919d7c8d3153e9a7b872d893e4477 — Nicolas Graves 11 months ago f8ed337
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>
1 files changed, 10 insertions(+), 11 deletions(-)

M gnu/packages/geo.scm
M gnu/packages/geo.scm => gnu/packages/geo.scm +10 -11
@@ 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")