lbraun pushed a commit to branch wip-python-pep517
in repository guix.
commit f68f012d673510adccecf78566ea08d4d9169f2e
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Sat Jan 8 15:49:31 2022 +0100
gnu: python-pytest-doctestplus: Add missing build input.
* gnu/packages/python-check.scm (python-pytest-doctestplus)[arguments]:
Remove custom #:phases.
[native-inputs]: python-pip.
---
gnu/packages/python-check.scm | 10 +---------
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 70644281ac..e01aec25ee 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -409,16 +409,8 @@ are too large to conveniently hard-code them in the
tests.")
(sha256
(base32 "1ai9kvd7xbq2jg2h8gmkb8lqzyrxvdh4zg3vxndg149iwd1hyi7d"))))
(build-system python-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key inputs outputs #:allow-other-keys)
- ;; Make the installed plugin discoverable by Pytest.
- (add-installed-pythonpath inputs outputs)
- (invoke "pytest" "-vv"))))))
(native-inputs
- (list python-pytest))
+ (list python-pytest python-pip))
(home-page "https://github.com/astropy/pytest-doctestplus")
(synopsis "Pytest plugin with advanced doctest features")
(description