diff options
author | Parnikkapore <poomklao@yahoo.com> | 2023-07-04 23:31:12 +0700 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-09-27 12:07:17 +0100 |
commit | b0938affbbef20e0bfb1496c30a8ec974d403329 (patch) | |
tree | ee4e2160a7eef21d3aa129a8da5dcbaa64659669 | |
parent | 79261203fd2efffb6a19a0628235af0d232911bb (diff) | |
download | guix-b0938affbbef20e0bfb1496c30a8ec974d403329.tar.gz guix-b0938affbbef20e0bfb1496c30a8ec974d403329.zip |
gnu: python-nbxmpp: Clean up formatting.
* gnu/packages/messaging.scm (python-nbxmpp): Clean up formatting.
Signed-off-by: Christopher Baines <mail@cbaines.net>
-rw-r--r-- | gnu/packages/messaging.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index d025660b2c..6173d98003 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1094,10 +1094,9 @@ simultaneously and therefore appear under the same nickname on IRC.") (source (origin (method url-fetch) - (uri - (pypi-uri "nbxmpp" version)) + (uri (pypi-uri "nbxmpp" version)) (sha256 - (base32 "095nyy6vjildhrqigxk6vsh49in6mx17bvb3z5zpjmzhv9b8ix46")))) + (base32 "095nyy6vjildhrqigxk6vsh49in6mx17bvb3z5zpjmzhv9b8ix46")))) (build-system pyproject-build-system) (arguments (list @@ -1107,8 +1106,7 @@ simultaneously and therefore appear under the same nickname on IRC.") (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "python" "-m" "unittest" "-v"))))))) - (native-inputs - (list `(,glib "bin"))) + (native-inputs (list `(,glib "bin"))) (inputs (list glib glib-networking |