guix-commits
[Top][All Lists]
Advanced

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

26/28: gnu: python-flask-oidc: Update to 1.4.0.


From: guix-commits
Subject: 26/28: gnu: python-flask-oidc: Update to 1.4.0.
Date: Sat, 22 Jan 2022 04:23:49 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 515854b31f22d26da6de1aefa3602cab10491a45
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sat Jan 22 09:48:11 2022 +0100

    gnu: python-flask-oidc: Update to 1.4.0.
    
    * gnu/packages/python-web.scm (python-flask-oidc): Update to 1.4.0.
    [arguments]: Override check phase.
---
 gnu/packages/python-web.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 232d6f0137..c6e760ce35 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3609,15 +3609,22 @@ library for Python")
 (define-public python-flask-oidc
   (package
     (name "python-flask-oidc")
-    (version "1.1.1")
+    (version "1.4.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "flask-oidc" version))
        (sha256
         (base32
-         "1ay5j0mf174bix7i67hclr95gv16z81fpx0dijvi0gydvdj3ddy2"))))
+         "0klgwpn2iy5y7011xh2c8zkryxdwkpxh7qjs3hp5cynl748ia4hc"))))
     (build-system python-build-system)
+    (arguments
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (replace 'check
+                 (lambda* (#:key tests? #:allow-other-keys)
+                   (when tests?
+                     (invoke "nosetests")))))))
     (propagated-inputs
      (list python-flask python-itsdangerous python-oauth2client
            python-six))



reply via email to

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