Archived
1
0
Fork 0

gnu: python-pyshp: Update to 2.3.1.

* gnu/packages/geo.scm (python-pyshp): Update to 2.3.1.
  [arguments]: Disable test that requires network access.

Change-Id: Iba7bd8191c17ecf255375a8443319b449057e094
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Felix Gruber 2024-02-04 16:47:16 +00:00 committed by Guillaume Le Vaillant
parent 4ad6872979
commit 556a7484f1
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -1323,7 +1323,7 @@ utilities for data translation and processing.")
(define-public python-pyshp (define-public python-pyshp
(package (package
(name "python-pyshp") (name "python-pyshp")
(version "2.1.3") (version "2.3.1")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -1332,8 +1332,13 @@ utilities for data translation and processing.")
(commit version))) (commit version)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "0jsraqzq82pw19wvx84x7w5cs8agr44a9b5y0jjw540wim4xa73r")))) (base32 "02pbr091p8v4kfv1p6p2aa4asgm9r74dc12r35lvgmhs9y163z69"))))
(build-system pyproject-build-system) (build-system pyproject-build-system)
(arguments
(list
#:test-flags
;; This test requires internet access.
'(list "--deselect" "test_shapefile.py::test_reader_url")))
(native-inputs (native-inputs
(list python-pytest python-pytest-runner)) (list python-pytest python-pytest-runner))
(home-page "https://github.com/GeospatialPython/pyshp") (home-page "https://github.com/GeospatialPython/pyshp")