mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 11:25:22 -05:00
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:
parent
aae32847b8
commit
2ab2d8e554
1 changed files with 9 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue