guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit bddfc1220874ea3ae0c127980006f3012ee2539d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jul 15 23:48:54 2025 +0100
gnu: python-time-machine: Fix build.
* gnu/packages/python-check.scm (python-time-machine): During check
phase it fails to find test backend but PyPI archive provides no tests.
[arguments] <tests?>: Visually disable them.
Change-Id: Ic39e39a520678c79249a326c4b14b523fab21638
---
gnu/packages/python-check.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index f66b7b92c5..d39af13b30 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -3937,6 +3937,8 @@ are useful when writing automated tests in Python.")
(sha256
(base32 "1qn7cj9lx3m7pwa8ak1106f9c54yvpa996x84gfqmyfjfg1ar6aa"))))
(build-system pyproject-build-system)
+ (arguments
+ `(#:tests? #f)) ;no tests in PyPI archive
(propagated-inputs (list python-dateutil))
(native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/adamchainz/time-machine")