gnu: Add python-geojson-for-pyowm.

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

Change-Id: I529429ef7ee600788df07d7f5fd41cec7ab29ba9
This commit is contained in:
jgart 2024-07-16 10:17:20 -05:00
parent 237cc5d149
commit 79b1f40176
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -16017,6 +16017,21 @@ (define-public python-geojson
structures.")
(license license:bsd-3)))
;; pyowm only accepts a version less than version 3.
(define-public python-geojson-for-pyowm
(package
(inherit python-geojson)
(version "2.5.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "geojson" version))
(sha256
(base32 "12k5bzqskvq3gqzkryarhdjl0df47y5k9cf8r3clasi2wjnbfjvf"))))
(arguments
;; https://github.com/jazzband/geojson/issues/175
(list #:tests? #f))))
(define-public wfetch
(let ((commit "e1cfa37814aebc9eb56ce994ebe877b6a6f9a715")
(revision "1"))