[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/33: gnu: python-nbxmpp: Update to 4.2.2.
From: |
guix-commits |
Subject: |
01/33: gnu: python-nbxmpp: Update to 4.2.2. |
Date: |
Wed, 27 Sep 2023 07:08:59 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit 9d7daaf10f9464869921a7d39c94c44c334d0cb4
Author: Parnikkapore <poomklao@yahoo.com>
AuthorDate: Tue Jul 4 23:31:08 2023 +0700
gnu: python-nbxmpp: Update to 4.2.2.
Gajim will not build at this commit.
* gnu/packages/messaging.scm (python-nbxmpp): Update to 4.2.2.
[arguments]: Specify "python -m unittest" as test method.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/messaging.scm | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 14c4fc2b15..4ef9c64646 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -148,6 +148,7 @@
#:use-module (guix build-system meson)
#:use-module (guix build-system perl)
#:use-module (guix build-system python)
+ #:use-module (guix build-system pyproject)
#:use-module (guix build-system qt)
#:use-module (guix build-system trivial)
#:use-module (guix download)
@@ -1089,21 +1090,29 @@ simultaneously and therefore appear under the same
nickname on IRC.")
(define-public python-nbxmpp
(package
(name "python-nbxmpp")
- (version "3.1.0")
+ (version "4.2.2")
(source
(origin
(method url-fetch)
(uri
(pypi-uri "nbxmpp" version))
(sha256
- (base32 "0c32090gr1fiy7hkn73dcj4ad9gfdpks8hivl1dl8bql01jsfdnj"))))
- (build-system python-build-system)
+ (base32 "095nyy6vjildhrqigxk6vsh49in6mx17bvb3z5zpjmzhv9b8ix46"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; XXX: This probably should be an option for pyproject-build-system
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests? (invoke "python" "-m" "unittest" "-v")))))))
(native-inputs
(list `(,glib "bin")))
(inputs
(list glib
glib-networking
- libsoup-minimal-2
+ libsoup-minimal
python-gssapi
python-idna
python-precis-i18n
- branch master updated (2c9009f9fe -> ce0cc6137d), guix-commits, 2023/09/27
- 01/33: gnu: python-nbxmpp: Update to 4.2.2.,
guix-commits <=
- 04/33: gnu: gajim-openpgp: Update to 1.5.0., guix-commits, 2023/09/27
- 03/33: gnu: gajim-omemo: Update to 2.9.0., guix-commits, 2023/09/27
- 02/33: gnu: gajim: Update to 1.7.3., guix-commits, 2023/09/27
- 05/33: gnu: python-nbxmpp: Clean up formatting., guix-commits, 2023/09/27
- 08/33: gnu: python-coloful: Update to 0.5.5., guix-commits, 2023/09/27
- 07/33: gnu: python-pyotp: Update to 2.9.0., guix-commits, 2023/09/27
- 06/33: gnu: gajim: Clean up formatting., guix-commits, 2023/09/27
- 11/33: gnu: splash: Update to 3.8.4., guix-commits, 2023/09/27
- 10/33: gnu: libxisf: Extend description., guix-commits, 2023/09/27
- 14/33: gnu: python-cdflib: Fix version detection., guix-commits, 2023/09/27