From 1c85ac3eeb63548f129a38ae1fbc5be05d3b236f Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 15 Jul 2025 23:48:54 +0100 Subject: [PATCH] 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] : 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 3e0ae79d828eecb6be101198bac755fc22a25e80..512bd98f1892646aeed24ab290fafa72f85a6c97 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")