civodul pushed a commit to branch master
in repository guix.
commit 7bc86c7cc72280ba0ca9db636bb5ca76df9d9b1e
Author: Lilah Tascheter <[email protected]>
AuthorDate: Thu Apr 27 14:43:17 2023 -0500
gnu: packages: Fix weechat-wee-slack build.
* gnu/packages/messaging.scm (weechat-wee-slack)[inputs]: Add
python-mock test dependency.
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/messaging.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 4b22bdbd0b..f87dc195bc 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -3383,7 +3383,7 @@ Weechat communicate over the Matrix protocol.")
(when tests?
(invoke "pytest")))))))
(inputs
- (list python-websocket-client))
+ (list python-mock python-websocket-client))
(native-inputs
(list python-pytest))
(home-page "https://github.com/wee-slack/wee-slack")