me
/
guix
Archived
1
0
Fork 0

gnu: Add python-geojson.

* gnu/packages/python-xyz.scm (python-geojson): New variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
master
Petr Hodina 2022-01-11 11:28:17 +01:00 committed by Ludovic Courtès
parent 476e39e3b2
commit 977a6c5769
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 22 additions and 0 deletions

View File

@ -11642,6 +11642,28 @@ asyncio.")
Python code formatter \"black\".")
(license license:expat)))
(define-public python-geojson
(package
(name "python-geojson")
(version "2.5.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "geojson" version))
(sha256
(base32 "12k5bzqskvq3gqzkryarhdjl0df47y5k9cf8r3clasi2wjnbfjvf"))))
(build-system python-build-system)
(arguments
;; https://github.com/jazzband/geojson/issues/175
`(#:tests? #f))
(home-page "https://github.com/jazzband/geojson")
(synopsis "Python bindings and utilities for GeoJSON")
(description
"This package provides Python bindings and utilities for
@uref{http://geojson.org/, GeoJSON}, a format for encoding geographic data
structures.")
(license license:bsd-3)))
(define-public python-get-version
(package
(name "python-get-version")