mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: python-nbxmpp: Update to 0.5.5.
* gnu/packages/messaging.scm (python-nbxmpp): Update to 0.5.5. [source]: Use PYPI-URI. [home-page]: Use HTTPS. [description]: Fix up.
This commit is contained in:
parent
9a14cd7f35
commit
46cb089f31
1 changed files with 7 additions and 8 deletions
|
@ -434,24 +434,23 @@ (define-public znc
|
||||||
(define-public python-nbxmpp
|
(define-public python-nbxmpp
|
||||||
(package
|
(package
|
||||||
(name "python-nbxmpp")
|
(name "python-nbxmpp")
|
||||||
(version "0.5.3")
|
(version "0.5.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://pypi.python.org/packages/source/n/nbxmpp/"
|
(uri (pypi-uri "nbxmpp" version))
|
||||||
"nbxmpp-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0dcr786dyips1fdvgsn8yvpgcz5j7217fi05c29cfypdl8jnp6mp"))))
|
"1gnzrzrdl4nii1sc5x8p5iw2ya5sl70j3nn34abqsny51p2pzmv6"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
;; No tests included
|
(arguments
|
||||||
(arguments `(#:tests? #f))
|
`(#:tests? #f)) ; no tests
|
||||||
(home-page "http://python-nbxmpp.gajim.org")
|
(home-page "https://dev.gajim.org/gajim/python-nbxmpp")
|
||||||
(synopsis "Non-blocking Jabber/XMPP module")
|
(synopsis "Non-blocking Jabber/XMPP module")
|
||||||
(description
|
(description
|
||||||
"The goal of this python library is to provide a way for Python
|
"The goal of this python library is to provide a way for Python
|
||||||
applications to use Jabber/XMPP networks in a non-blocking way. This library
|
applications to use Jabber/XMPP networks in a non-blocking way. This library
|
||||||
was initially a fork of xmpppy, but is using non-blocking sockets.")
|
was initially a fork of xmpppy, but uses non-blocking sockets.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public python2-nbxmpp
|
(define-public python2-nbxmpp
|
||||||
|
|
Loading…
Reference in a new issue