gnu: python-flask-login: Don't use unstable tarball.
* gnu/packages/python-web.scm (python-flask-login)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
932839ff12
commit
79374801d0
|
@ -2056,13 +2056,13 @@ It comes with safe defaults and easily configurable options.")
|
||||||
(version "0.4.0")
|
(version "0.4.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/maxcountryman/flask-login/archive/"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/maxcountryman/flask-login.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0sjbmk8m4mmd9g99n6c6lx9nv2jwwqp6qsqhl945w2m0f1sknwdh"))))
|
||||||
"1pdqp7a2gyb7k06xda004x0fi2w66s6kn2i0ndkqndmg12d83f9w"))))
|
|
||||||
(arguments
|
(arguments
|
||||||
;; Tests fail PEP8 compliance. See:
|
;; Tests fail PEP8 compliance. See:
|
||||||
;; https://github.com/maxcountryman/flask-login/issues/340
|
;; https://github.com/maxcountryman/flask-login/issues/340
|
||||||
|
|
Loading…
Reference in New Issue