This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 5c66be3c17 gnu: python-mf2py: Add missing input.
5c66be3c17 is described below
commit 5c66be3c17e279e4589320c69deb5dba0fd034e2
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon Jun 12 20:54:57 2023 +0300
gnu: python-mf2py: Add missing input.
* gnu/packages/python-web.scm (python-mf2py)[native-inputs]: Add
python-mock.
---
gnu/packages/python-web.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 8cf03d3737..6869eb0a8b 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -8101,7 +8101,7 @@ characters in a smarter, more visually pleasing style.")
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-vv" "test")))))))
- (native-inputs (list python-pytest))
+ (native-inputs (list python-mock python-pytest))
(propagated-inputs
(list python-beautifulsoup4 python-html5lib python-requests))
(home-page "https://github.com/microformats/mf2py")