3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add python-geomet.

* gnu/packages/python-xyz.scm (python-geomet): New variable.
This commit is contained in:
Hartmut Goebel 2022-06-15 12:02:04 +02:00
parent 477e561a46
commit bc6780ee9a
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -30006,3 +30006,23 @@ with it, and it also implements recommendations from the
and names, built from Unicode CLDR and the IANA subtag registry, if you and names, built from Unicode CLDR and the IANA subtag registry, if you
install @code{python-language-data}.") install @code{python-language-data}.")
(license license:expat))) (license license:expat)))
(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)
(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
GeoJSON to WKT/WKB (Well-Known Text/Binary) or GeoPackage Binary, and vice
versa. Extended WKB/WKT are also supported.")
(license license:asl2.0)))