~ruther/guix-local

7694e6846fe87c1952132e3c303535f25a60ddc1 — Ricardo Wurmus 1 year, 3 months ago 5f1895e
gnu: python-flask-login: Update to 0.6.3.

* gnu/packages/python-web.scm (python-flask-login): Update to 0.6.3.
[native-inputs]: Add python-setuptools and python-wheel.

Change-Id: Ie1dc0ffccc11172e21d0013d84c064b8c2793e5f
1 files changed, 5 insertions(+), 3 deletions(-)

M gnu/packages/python-web.scm
M gnu/packages/python-web.scm => gnu/packages/python-web.scm +5 -3
@@ 5545,7 5545,7 @@ on the command line.")
(define-public python-flask-login
  (package
    (name "python-flask-login")
    (version "0.6.0")
    (version "0.6.3")
    (source
     (origin
       (method git-fetch)


@@ 5554,7 5554,7 @@ on the command line.")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "12yw01ccgjn9c88cbkrd6k1ykjxd8fxip2b1isvxjirphnlqhn9g"))))
        (base32 "0wk3dni5qssmbn8ii3hsh89qa3kwr97i92k27bzgsgxvvsfwwzja"))))
    (build-system pyproject-build-system)
    (propagated-inputs
     (list python-flask))


@@ 5564,7 5564,9 @@ on the command line.")
           python-mock
           python-pytest
           python-semantic-version
           python-werkzeug))
           python-setuptools
           python-werkzeug
           python-wheel))
    (home-page "https://github.com/maxcountryman/flask-login")
    (synopsis "User session management for Flask")
    (description