gnu: python-folium: Update to 0.12.1.

* gnu/packages/python-xyz.scm (python-folium): Update to 0.12.1.
[source]: Fetch from GitHub instead of PyPI.
This commit is contained in:
Nicolas Goaziou 2021-02-01 21:53:28 +01:00
parent aae32847b8
commit 2ab2d8e554
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -20417,13 +20417,18 @@ (define-public python-cached-property
(define-public python-folium
(package
(name "python-folium")
(version "0.11.0")
(version "0.12.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "folium" version))
;; PyPI has a ".whl" file but not a proper source release.
;; Thus, fetch code from Git.
(method git-fetch)
(uri (git-reference
(url "https://github.com/python-visualization/folium")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "19sclsq3xcjfa7bavzjpyn6rl9b15jbc76n5aag4cwhqqamqj1sl"))))
(base32 "0yi5y9pfpbc4bc4ibr8cblif8ls1wf3k0zawyx86r2qwxxkkyd6k"))))
(build-system python-build-system)
(propagated-inputs
`(("python-branca" ,python-branca)