From 8394619baceb118df92e355377fd543bb1aa501a Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 13 Dec 2021 17:18:24 +0100 Subject: gnu: Simplify package inputs. This commit was obtained by running: ./pre-inst-env guix style without any additional argument. --- gnu/packages/magic-wormhole.scm | 52 ++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 27 deletions(-) (limited to 'gnu/packages/magic-wormhole.scm') diff --git a/gnu/packages/magic-wormhole.scm b/gnu/packages/magic-wormhole.scm index 465e6aced6..a498eb8117 100644 --- a/gnu/packages/magic-wormhole.scm +++ b/gnu/packages/magic-wormhole.scm @@ -48,15 +48,15 @@ (define-public magic-wormhole-mailbox-server (("test_log_http") "disabled_test_log_http")) #t))))) (native-inputs - `(("python-mock" ,python-mock))) + (list python-mock)) (propagated-inputs - `(("python-attrs" ,python-attrs) - ("python-autobahn" ,python-autobahn) - ("python-idna" ,python-idna) - ("python-service-identity" ,python-service-identity) - ("python-six" ,python-six) - ("python-treq" ,python-treq) - ("python-twisted" ,python-twisted))) + (list python-attrs + python-autobahn + python-idna + python-service-identity + python-six + python-treq + python-twisted)) (home-page "https://github.com/warner/magic-wormhole-mailbox-server") (synopsis "Magic-Wormhole central mailbox server") (description "This package provides the main server that Magic-Wormhole @@ -89,11 +89,9 @@ (define-public magic-wormhole-transit-relay (find-files "docs/")) #t)))))) (native-inputs - `(("python-mock" ,python-mock) - ("python-pyflakes" ,python-pyflakes) - ("python-tox" ,python-tox))) + (list python-mock python-pyflakes python-tox)) (propagated-inputs - `(("python-twisted" ,python-twisted))) + (list python-twisted)) (home-page "https://github.com/warner/magic-wormhole-transit-relay") (synopsis "Magic-Wormhole relay server") @@ -128,22 +126,22 @@ (define-public magic-wormhole (install-file "docs/wormhole.1" man)) #t))))) (native-inputs - `(("python-mock" ,python-mock) - ;; XXX These are required for the test suite but end up being referenced - ;; by the built package. - ;; https://bugs.gnu.org/25235 - ("magic-wormhole-mailbox-server" ,magic-wormhole-mailbox-server) - ("magic-wormhole-transit-relay" ,magic-wormhole-transit-relay))) + (list python-mock + ;; XXX These are required for the test suite but end up being referenced + ;; by the built package. + ;; https://bugs.gnu.org/25235 + magic-wormhole-mailbox-server + magic-wormhole-transit-relay)) (propagated-inputs - `(("python-autobahn" ,python-autobahn) - ("python-click" ,python-click) - ("python-hkdf" ,python-hkdf) - ("python-humanize" ,python-humanize) - ("python-pynacl" ,python-pynacl) - ("python-spake2" ,python-spake2) - ("python-tqdm" ,python-tqdm) - ("python-twisted" ,python-twisted) - ("python-txtorcon" ,python-txtorcon))) + (list python-autobahn + python-click + python-hkdf + python-humanize + python-pynacl + python-spake2 + python-tqdm + python-twisted + python-txtorcon)) (home-page "https://github.com/warner/magic-wormhole") (synopsis "Securely transfer data between computers") (description "Magic-Wormhole is a library and a command-line tool named -- cgit v1.2.3