gnu: python-urwidtrees: Don't use unstable tarball.
* gnu/packages/python-xyz.scm (python-urwidtrees)[source]: Download using git-fetch.
This commit is contained in:
parent
957c683354
commit
c83640728c
1 changed files with 6 additions and 5 deletions
|
@ -5620,15 +5620,16 @@ features useful for text console applications.")
|
||||||
(version "1.0.2")
|
(version "1.0.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
;; package author intends on distributing via github rather than pypi:
|
;; package author intends on distributing via github rather than pypi:
|
||||||
;; https://github.com/pazz/alot/issues/877#issuecomment-230173331
|
;; https://github.com/pazz/alot/issues/877#issuecomment-230173331
|
||||||
(uri (string-append "https://github.com/pazz/urwidtrees/archive/"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/pazz/urwidtrees")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0d30lyd3s2a97rhqfax5w9ssqds2z6aydqx3c6j2c2lk3cb4ngvh"))))
|
"1n1kpidvkdnsqyb82vlvk78gmly96kh8351lqxn2pzgwwns6fml2"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f)) ; no tests
|
'(#:tests? #f)) ; no tests
|
||||||
|
|
Reference in a new issue