summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-11-22 15:54:31 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-25 12:05:56 +0000
commitbcedef2d749ee02d8c7584508afffa6c67fbc745 (patch)
tree6e7245cb4485599524015e5fbf769cb4b8bfdd93 /gnu
parent885fc047ef203fab8c21254a575ac201fbc6505d (diff)
gnu: python-geomet: Update to 1.1.0.
* gnu/packages/python-xyz.scm (python-geomet): Update to 1.1.0. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-pytest, python-setuptools. [synopsis, description]: Improve style. Change-Id: If3072c4ac81550b29cb11376e5f25f7db3fd55a8 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm27
1 files changed, 16 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6d618c5099..f22fd405ce 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -35460,19 +35460,24 @@ ASCII representation.")
(define-public python-geomet
(package
(name "python-geomet")
- (version "0.3.0")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "geomet" version))
- (sha256
- (base32
- "06rfvadx5dr5xrgsc5bsmqil9c9kff6i13xl988gy0gfg0cl2lnb"))))
- (build-system python-build-system)
+ (version "1.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/geomet/geomet")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "06pq3xkvsxl2v6q39pqgkjbaysyylshny28k8krzg7drvpvkdwk1"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools))
(propagated-inputs (list python-click python-six))
(home-page "https://github.com/geomet/geomet")
- (synopsis "Convert GeoJSON to WKT/WKB (Well-Known Text/Binary) or
-GeoPackage Binary")
- (description "This package provides utilities and functions for converting
+ (synopsis
+ "Convert GeoJSON to WKT/WKB (Well-Known Text/Binary) or GeoPackage Binary")
+ (description
+ "This package provides utilities and functions for converting
GeoJSON to WKT/WKB (Well-Known Text/Binary) or GeoPackage Binary, and vice
versa. Extended WKB/WKT are also supported.")
(license license:asl2.0)))