GNU bug report logs - #26731
[Patch 0/2] Add python-flask-oidc and dependencies.

Previous Next

Package: guix-patches;

Reported by: Danny Milosavljevic <dannym <at> scratchpost.org>

Date: Mon, 1 May 2017 10:01:02 UTC

Severity: normal

Tags: patch

Done: Danny Milosavljevic <dannym <at> scratchpost.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 26731 in the body.
You can then email your comments to 26731 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#26731; Package guix-patches. (Mon, 01 May 2017 10:01:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Danny Milosavljevic <dannym <at> scratchpost.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 01 May 2017 10:01:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Danny Milosavljevic <dannym <at> scratchpost.org>
To: guix-patches <at> gnu.org
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>
Subject: [Patch 0/2] Add python-flask-oidc and dependencies.
Date: Mon,  1 May 2017 12:00:15 +0200
Danny Milosavljevic (2):
  gnu: Add python-oauth2client.
  gnu: Add python-flask-oidc.

 gnu/packages/python.scm | 54 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)





Information forwarded to guix-patches <at> gnu.org:
bug#26731; Package guix-patches. (Mon, 01 May 2017 10:02:02 GMT) Full text and rfc822 format available.

Message #8 received at 26731 <at> debbugs.gnu.org (full text, mbox):

From: Danny Milosavljevic <dannym <at> scratchpost.org>
To: 26731 <at> debbugs.gnu.org
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>
Subject: [PATCH 1/2] gnu: Add python-oauth2client.
Date: Mon,  1 May 2017 12:01:42 +0200
* gnu/packages/python.scm (python-oauth2client): New variable.
---
 gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 164c1f49b..dd83f2dd7 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14011,3 +14011,30 @@ exception message with a traceback that points to the culprit.")
 
 (define-public python2-fudge
   (package-with-python2 python-fudge))
+
+(define-public python-oauth2client
+  (package
+    (name "python-oauth2client")
+    (version "4.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "oauth2client" version))
+       (sha256
+        (base32
+         "1irqqap2zibysf8dba8sklfqikia579srd0phm5n754ni0h59gl0"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f))                    ; Django not found.
+    (propagated-inputs
+     `(("python-httplib2" ,python-httplib2)
+       ("python-pyasn1" ,python-pyasn1)
+       ("python-pyasn1-modules" ,python-pyasn1-modules)
+       ("python-rsa" ,python-rsa)
+       ("python-six" ,python-six)))
+    (home-page
+     "http://github.com/google/oauth2client/")
+    (synopsis "OAuth 2.0 client library")
+    (description "@code{python-oauth2client} provides an OAuth 2.0 client
+library for Python")
+    (license license:asl2.0)))




Information forwarded to guix-patches <at> gnu.org:
bug#26731; Package guix-patches. (Mon, 01 May 2017 10:02:03 GMT) Full text and rfc822 format available.

Message #11 received at 26731 <at> debbugs.gnu.org (full text, mbox):

From: Danny Milosavljevic <dannym <at> scratchpost.org>
To: 26731 <at> debbugs.gnu.org
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>
Subject: [PATCH 2/2] gnu: Add python-flask-oidc.
Date: Mon,  1 May 2017 12:01:43 +0200
* gnu/packages/python.scm (python-flask-oidc): New variable.
---
 gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index dd83f2dd7..1ea2db622 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14038,3 +14038,30 @@ exception message with a traceback that points to the culprit.")
     (description "@code{python-oauth2client} provides an OAuth 2.0 client
 library for Python")
     (license license:asl2.0)))
+
+(define-public python-flask-oidc
+  (package
+    (name "python-flask-oidc")
+    (version "1.1.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "flask-oidc" version))
+       (sha256
+        (base32
+         "1ay5j0mf174bix7i67hclr95gv16z81fpx0dijvi0gydvdj3ddy2"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-flask" ,python-flask)
+       ("python-itsdangerous" ,python-itsdangerous)
+       ("python-oauth2client" ,python-oauth2client)
+       ("python-six" ,python-six)))
+    (native-inputs
+     `(("python-nose" ,python-nose)
+       ("python-mock" ,python-mock)))
+    (home-page
+     "https://github.com/puiterwijk/flask-oidc")
+    (synopsis "OpenID Connect extension for Flask")
+    (description "@code{python-flask-oidc} provides an OpenID Connect extension
+for Flask.")
+    (license license:bsd-2)))




Information forwarded to guix-patches <at> gnu.org:
bug#26731; Package guix-patches. (Mon, 01 May 2017 14:58:01 GMT) Full text and rfc822 format available.

Message #14 received at 26731 <at> debbugs.gnu.org (full text, mbox):

From: Marius Bakke <mbakke <at> fastmail.com>
To: Danny Milosavljevic <dannym <at> scratchpost.org>, 26731 <at> debbugs.gnu.org
Subject: Re: bug#26731: [PATCH 1/2] gnu: Add python-oauth2client.
Date: Mon, 01 May 2017 16:57:52 +0200
[Message part 1 (text/plain, inline)]
Danny Milosavljevic <dannym <at> scratchpost.org> writes:

> * gnu/packages/python.scm (python-oauth2client): New variable.
> ---
>  gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
> index 164c1f49b..dd83f2dd7 100644
> --- a/gnu/packages/python.scm
> +++ b/gnu/packages/python.scm
> @@ -14011,3 +14011,30 @@ exception message with a traceback that points to the culprit.")
>  
>  (define-public python2-fudge
>    (package-with-python2 python-fudge))
> +
> +(define-public python-oauth2client
> +  (package
> +    (name "python-oauth2client")
> +    (version "4.0.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (pypi-uri "oauth2client" version))
> +       (sha256
> +        (base32
> +         "1irqqap2zibysf8dba8sklfqikia579srd0phm5n754ni0h59gl0"))))
> +    (build-system python-build-system)
> +    (arguments
> +     `(#:tests? #f))                    ; Django not found.

Please add a TODO here, maybe including the error message.

> +    (propagated-inputs
> +     `(("python-httplib2" ,python-httplib2)
> +       ("python-pyasn1" ,python-pyasn1)
> +       ("python-pyasn1-modules" ,python-pyasn1-modules)
> +       ("python-rsa" ,python-rsa)
> +       ("python-six" ,python-six)))
> +    (home-page
> +     "http://github.com/google/oauth2client/")

The line break here is unnecessary.

> +    (synopsis "OAuth 2.0 client library")
> +    (description "@code{python-oauth2client} provides an OAuth 2.0 client
> +library for Python")

...and this misses a punctuation

> +    (license license:asl2.0)))
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#26731; Package guix-patches. (Mon, 01 May 2017 15:00:02 GMT) Full text and rfc822 format available.

Message #17 received at 26731 <at> debbugs.gnu.org (full text, mbox):

From: Marius Bakke <mbakke <at> fastmail.com>
To: Danny Milosavljevic <dannym <at> scratchpost.org>, 26731 <at> debbugs.gnu.org
Subject: Re: bug#26731: [PATCH 2/2] gnu: Add python-flask-oidc.
Date: Mon, 01 May 2017 16:59:02 +0200
[Message part 1 (text/plain, inline)]
Danny Milosavljevic <dannym <at> scratchpost.org> writes:

> * gnu/packages/python.scm (python-flask-oidc): New variable.
> ---
>  gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
> index dd83f2dd7..1ea2db622 100644
> --- a/gnu/packages/python.scm
> +++ b/gnu/packages/python.scm
> @@ -14038,3 +14038,30 @@ exception message with a traceback that points to the culprit.")
>      (description "@code{python-oauth2client} provides an OAuth 2.0 client
>  library for Python")
>      (license license:asl2.0)))
> +
> +(define-public python-flask-oidc
> +  (package
> +    (name "python-flask-oidc")
> +    (version "1.1.1")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (pypi-uri "flask-oidc" version))
> +       (sha256
> +        (base32
> +         "1ay5j0mf174bix7i67hclr95gv16z81fpx0dijvi0gydvdj3ddy2"))))
> +    (build-system python-build-system)
> +    (propagated-inputs
> +     `(("python-flask" ,python-flask)
> +       ("python-itsdangerous" ,python-itsdangerous)
> +       ("python-oauth2client" ,python-oauth2client)
> +       ("python-six" ,python-six)))
> +    (native-inputs
> +     `(("python-nose" ,python-nose)
> +       ("python-mock" ,python-mock)))
> +    (home-page
> +     "https://github.com/puiterwijk/flask-oidc")

Why these line breaks? Looks good otherwise!

> +    (synopsis "OpenID Connect extension for Flask")
> +    (description "@code{python-flask-oidc} provides an OpenID Connect extension
> +for Flask.")
> +    (license license:bsd-2)))
[signature.asc (application/pgp-signature, inline)]

bug closed, send any further explanations to 26731 <at> debbugs.gnu.org and Danny Milosavljevic <dannym <at> scratchpost.org> Request was from Danny Milosavljevic <dannym <at> scratchpost.org> to control <at> debbugs.gnu.org. (Sun, 07 May 2017 19:22:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 05 Jun 2017 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 6 years and 326 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.