* [PATCH] gnu: Add python-openid.
@ 2017-02-06 22:24 Julien Lepiller
2017-02-13 14:59 ` Ludovic Courtès
2017-02-14 15:23 ` Marius Bakke
0 siblings, 2 replies; 6+ messages in thread
From: Julien Lepiller @ 2017-02-06 22:24 UTC (permalink / raw)
To: guix-devel
* gnu/packages/python.scm (python-openid): New variable.
---
gnu/packages/python.scm | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index d53eea189..845a4a1be 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -31,7 +31,7 @@
;;; Copyright © 2016 Dylan Jeffers <sapientech@sapientech@openmailbox.org>
;;; Copyright © 2016 Alex Vong <alexvong1995@gmail.com>
;;; Copyright © 2016 Arun Isaac <arunisaac@systemreboot.net>
-;;; Copyright © 2016 Julien Lepiller <julien@lepiller.eu>
+;;; Copyright © 2016, 2017 Julien Lepiller <julien@lepiller.eu>
;;; Copyright © 2016, 2017 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be>
;;; Copyright © 2017 Carlo Zancanaro <carlo@zancanaro.id.au>
@@ -5158,6 +5158,24 @@ features useful for text console applications.")
(define-public python2-urwid
(package-with-python2 python-urwid))
+(define-public python-openid
+ (package
+ (name "python-openid")
+ (version "3.0.10")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "python3-openid" version))
+ (sha256
+ (base32
+ "1x3nh3fycqfn43jp5j5pb4q4y2jxp4mdka4absaa3bc0078qd758"))))
+ (build-system python-build-system)
+ (home-page "https://github.com/necaris/python3-openid")
+ (synopsis "OpenID support for servers and consumers")
+ (description "This library provides OpenID authentication for Python, both
+for clients and servers.")
+ (license license:asl2.0)))
+
(define-public python2-openid
(package
(name "python2-openid")
--
2.11.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] gnu: Add python-openid.
2017-02-06 22:24 [PATCH] gnu: Add python-openid Julien Lepiller
@ 2017-02-13 14:59 ` Ludovic Courtès
2017-02-14 15:23 ` Marius Bakke
1 sibling, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2017-02-13 14:59 UTC (permalink / raw)
To: Julien Lepiller; +Cc: guix-devel
Julien Lepiller <julien@lepiller.eu> skribis:
> * gnu/packages/python.scm (python-openid): New variable.
LGTM, thanks!
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gnu: Add python-openid.
2017-02-06 22:24 [PATCH] gnu: Add python-openid Julien Lepiller
2017-02-13 14:59 ` Ludovic Courtès
@ 2017-02-14 15:23 ` Marius Bakke
2017-02-14 15:55 ` ng0
1 sibling, 1 reply; 6+ messages in thread
From: Marius Bakke @ 2017-02-14 15:23 UTC (permalink / raw)
To: Julien Lepiller, guix-devel
[-- Attachment #1: Type: text/plain, Size: 1096 bytes --]
Julien Lepiller <julien@lepiller.eu> writes:
> * gnu/packages/python.scm (python-openid): New variable.
[...]
> +(define-public python-openid
> + (package
> + (name "python-openid")
> + (version "3.0.10")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (pypi-uri "python3-openid" version))
> + (sha256
> + (base32
> + "1x3nh3fycqfn43jp5j5pb4q4y2jxp4mdka4absaa3bc0078qd758"))))
> + (build-system python-build-system)
> + (home-page "https://github.com/necaris/python3-openid")
> + (synopsis "OpenID support for servers and consumers")
> + (description "This library provides OpenID authentication for Python, both
> +for clients and servers.")
> + (license license:asl2.0)))
Hi Julien,
This package has a runtime dependency on 'defusedxml' according to the
setup.py file. It is currently silently failing its tests due to this,
and a bug in python-build-system[0].
Could you look into packaging it and using it for this package?
[0] https://debbugs.gnu.org/cgi/bugreport.cgi?bug=25177
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gnu: Add python-openid.
2017-02-14 15:23 ` Marius Bakke
@ 2017-02-14 15:55 ` ng0
2017-02-14 16:53 ` ng0
0 siblings, 1 reply; 6+ messages in thread
From: ng0 @ 2017-02-14 15:55 UTC (permalink / raw)
To: Marius Bakke; +Cc: guix-devel
On 17-02-14 16:23:13, Marius Bakke wrote:
> Julien Lepiller <julien@lepiller.eu> writes:
>
> > * gnu/packages/python.scm (python-openid): New variable.
>
> [...]
>
> > +(define-public python-openid
> > + (package
> > + (name "python-openid")
> > + (version "3.0.10")
> > + (source
> > + (origin
> > + (method url-fetch)
> > + (uri (pypi-uri "python3-openid" version))
> > + (sha256
> > + (base32
> > + "1x3nh3fycqfn43jp5j5pb4q4y2jxp4mdka4absaa3bc0078qd758"))))
> > + (build-system python-build-system)
> > + (home-page "https://github.com/necaris/python3-openid")
> > + (synopsis "OpenID support for servers and consumers")
> > + (description "This library provides OpenID authentication for Python, both
> > +for clients and servers.")
> > + (license license:asl2.0)))
>
> Hi Julien,
>
> This package has a runtime dependency on 'defusedxml' according to the
> setup.py file. It is currently silently failing its tests due to this,
> and a bug in python-build-system[0].
>
> Could you look into packaging it and using it for this package?
>
> [0] https://debbugs.gnu.org/cgi/bugreport.cgi?bug=25177
Hi,
as far as I know I packaged defusedxml. Either someone forgot to review
this or you should look at the last email I've sent about packages which
need to be reviewed.
Thanks.
--
ng0 -- https://www.inventati.org/patternsinthechaos/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gnu: Add python-openid.
2017-02-14 15:55 ` ng0
@ 2017-02-14 16:53 ` ng0
2017-02-15 19:14 ` Julien Lepiller
0 siblings, 1 reply; 6+ messages in thread
From: ng0 @ 2017-02-14 16:53 UTC (permalink / raw)
To: Marius Bakke, Julien Lepiller, guix-devel
On 17-02-14 15:55:11, ng0 wrote:
> On 17-02-14 16:23:13, Marius Bakke wrote:
> > Julien Lepiller <julien@lepiller.eu> writes:
> >
> > > * gnu/packages/python.scm (python-openid): New variable.
> >
> > [...]
> >
> > > +(define-public python-openid
> > > + (package
> > > + (name "python-openid")
> > > + (version "3.0.10")
> > > + (source
> > > + (origin
> > > + (method url-fetch)
> > > + (uri (pypi-uri "python3-openid" version))
> > > + (sha256
> > > + (base32
> > > + "1x3nh3fycqfn43jp5j5pb4q4y2jxp4mdka4absaa3bc0078qd758"))))
> > > + (build-system python-build-system)
> > > + (home-page "https://github.com/necaris/python3-openid")
> > > + (synopsis "OpenID support for servers and consumers")
> > > + (description "This library provides OpenID authentication for Python, both
> > > +for clients and servers.")
> > > + (license license:asl2.0)))
> >
> > Hi Julien,
> >
> > This package has a runtime dependency on 'defusedxml' according to the
> > setup.py file. It is currently silently failing its tests due to this,
> > and a bug in python-build-system[0].
> >
> > Could you look into packaging it and using it for this package?
> >
> > [0] https://debbugs.gnu.org/cgi/bugreport.cgi?bug=25177
>
> Hi,
>
> as far as I know I packaged defusedxml. Either someone forgot to review
> this or you should look at the last email I've sent about packages which
> need to be reviewed.
As you can see here https://lists.gnu.org/archive/cgi-bin/namazu.cgi?query=defusedxml&submit=Search!&idxname=guix-devel&max=20&result=normal&sort=score
they have not been pushed (as part of postorius) because Harmut had a
question, django packaging related, which so far remained open:
https://lists.gnu.org/archive/html/guix-devel/2017-02/msg00072.html
It would be great if either Harmut would just go ahead and push them -
discussion can be done afterwards and package process be fixed and
documented then - or if the questions are replied to.
> Thanks.
> --
> ng0 -- https://www.inventati.org/patternsinthechaos/
>
--
ng0 -- https://www.inventati.org/patternsinthechaos/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gnu: Add python-openid.
2017-02-14 16:53 ` ng0
@ 2017-02-15 19:14 ` Julien Lepiller
0 siblings, 0 replies; 6+ messages in thread
From: Julien Lepiller @ 2017-02-15 19:14 UTC (permalink / raw)
To: guix-devel
On Tue, 14 Feb 2017 16:53:40 +0000
ng0 <contact.ng0@cryptolab.net> wrote:
>
> As you can see here
> https://lists.gnu.org/archive/cgi-bin/namazu.cgi?query=defusedxml&submit=Search!&idxname=guix-devel&max=20&result=normal&sort=score
> they have not been pushed (as part of postorius) because Harmut had a
> question, django packaging related, which so far remained open:
> https://lists.gnu.org/archive/html/guix-devel/2017-02/msg00072.html
Sorry I pushed my patch before I saw your answer :/
>
> It would be great if either Harmut would just go ahead and push them -
> discussion can be done afterwards and package process be fixed and
> documented then - or if the questions are replied to.
>
>
> > Thanks.
> > --
> > ng0 -- https://www.inventati.org/patternsinthechaos/
> >
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-02-15 19:14 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-06 22:24 [PATCH] gnu: Add python-openid Julien Lepiller
2017-02-13 14:59 ` Ludovic Courtès
2017-02-14 15:23 ` Marius Bakke
2017-02-14 15:55 ` ng0
2017-02-14 16:53 ` ng0
2017-02-15 19:14 ` Julien Lepiller
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).