aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/geo.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-01-28 22:06:50 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-01-28 22:31:19 +0000
commitec2fed9f5b1fb1c3e3e972056f3902146b2c378d (patch)
tree88e698c51eab748acad6fffc9e5bd25227b91d66 /gnu/packages/geo.scm
parent39c490b1ca62872163ad81c495204833326b65d3 (diff)
downloadguix-ec2fed9f5b1fb1c3e3e972056f3902146b2c378d.tar
guix-ec2fed9f5b1fb1c3e3e972056f3902146b2c378d.tar.gz
gnu: python-pyshp: Simplify package.
* gnu/packages/geo.scm (python-pyshp): Simplify package. [build-system]: Swap to pyproject-build-system. Change-Id: I4a7429396e5a1b77cfbde1ce294f9f975153d1ef
Diffstat (limited to 'gnu/packages/geo.scm')
-rw-r--r--gnu/packages/geo.scm10
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 16a6858907..2b62453457 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -1324,15 +1324,7 @@ utilities for data translation and processing.")
(file-name (git-file-name name version))
(sha256
(base32 "0jsraqzq82pw19wvx84x7w5cs8agr44a9b5y0jjw540wim4xa73r"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- ;; This is the only test file.
- (invoke "python" "-m" "pytest" "test_shapefile.py")))))))
+ (build-system pyproject-build-system)
(native-inputs
(list python-pytest python-pytest-runner))
(home-page "https://github.com/GeospatialPython/pyshp")