lbraun pushed a commit to branch wip-python-pep517
in repository guix.
commit d0c6a2de8a08ef11ba7de9cdf458f433ea1893bd
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Fri Dec 31 20:58:14 2021 +0100
gnu: python-devtools: Disable tests.
* gnu/packages/python-xyz.scm (python-devtools)[arguments]: Remove
obsolete custom #:phases and disable tests.
---
gnu/packages/python-xyz.scm | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index fe5c36aa30..0dbaaf2bc1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26673,16 +26673,12 @@ and have a maximum lifetime built-in.")
(sha256
(base32 "15zczdcm90wl54c68f1qjb05nkd5bjsc9xjl3lk4frs7k7wkmrvp"))))
(build-system python-build-system)
+ ;; Disable tests, because the package is buggy with newer Python versions.
+ (arguments `(#:tests? #f))
(native-inputs
(list python-pytest python-pytest-mock))
(propagated-inputs
(list python-pygments))
- (arguments
- `(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda _
- (invoke "pytest")
- #t)))))
(home-page "https://github.com/samuelcolvin/python-devtools")
(synopsis "Debug command and development tools")
(description