From 98d27e7c4ef30cf4bdcaae5d69e6441b171bd4cb Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 20 Sep 2025 21:06:58 +0100 Subject: [PATCH] gnu: python-dateutils: Skip tests. * gnu/packages/time.scm (python-dateutils)[arguments] : They require twine. [native-inputs]: Remove python-wheel. Change-Id: I136b5cbfb1cf8ea74b2bd217810781c75c514300 --- gnu/packages/time.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm index 2258cf13afc..c1ad2ba86fb 100644 --- a/gnu/packages/time.scm +++ b/gnu/packages/time.scm @@ -387,6 +387,8 @@ datetime module, available in Python 2.3+.") (license (list bsd-3 asl2.0)))) (define-public python-dateutils + ;; XXX: The last release was in 2021, no development on the master + ;; branch. consider to remove when nothing depends on it. (package (name "python-dateutils") (version "0.6.12") @@ -397,8 +399,9 @@ datetime module, available in Python 2.3+.") (base32 "1wg3f3imjq3snvjccv64h5498pqv9xz664xhni7bsh8mnay91p83")))) (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;requires twine (propagated-inputs (list python-dateutil python-pytz)) - (native-inputs (list python-setuptools python-wheel)) + (native-inputs (list python-setuptools)) (home-page "https://github.com/jmcantrell/python-dateutils") (synopsis "Various utilities for working with date and datetime objects") (description