guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

209/242: gnu: python-flask-login: Update to 0.6.0.


From: guix-commits
Subject: 209/242: gnu: python-flask-login: Update to 0.6.0.
Date: Thu, 12 May 2022 14:14:37 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit 7d882da0ebdb64b7d0dbdfe964bc75d3274a3265
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Apr 20 01:47:20 2022 -0400

    gnu: python-flask-login: Update to 0.6.0.
    
    * gnu/packages/python-web.scm (python-flask-login): Update to 0.6.0.
    [arguments]: New field.
    [native-inputs]: Remove python-coverage, python-pycodestyle and
    python-pyflakes.
---
 gnu/packages/python-web.scm | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index f98f824daa..094ec10e4b 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3837,7 +3837,7 @@ on the command line.")
 (define-public python-flask-login
   (package
     (name "python-flask-login")
-    (version "0.5.0")
+    (version "0.6.0")
     (source
      (origin
        (method git-fetch)
@@ -3846,17 +3846,21 @@ on the command line.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "11ac924w0y4m0kf3mxnxdlidy88jfa7njw5yyrq16dvnx4iwd8gg"))))
+        (base32 "12yw01ccgjn9c88cbkrd6k1ykjxd8fxip2b1isvxjirphnlqhn9g"))))
     (build-system python-build-system)
+    (arguments
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (replace 'check
+                 (lambda* (#:key tests? #:allow-other-keys)
+                   (when tests?
+                     (invoke "pytest" "-vv" "-c" "/dev/null")))))))
     (propagated-inputs
      (list python-flask))
     (native-inputs
      ;; For tests.
      (list python-blinker
-           python-coverage
            python-mock
-           python-pycodestyle
-           python-pyflakes
            python-pytest
            python-semantic-version
            python-werkzeug))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]