M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +16 -11
@@ 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)))