summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-20 21:06:58 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-20 21:07:07 +0100
commit98d27e7c4ef30cf4bdcaae5d69e6441b171bd4cb (patch)
treeab207e17889eb92a797a8132dc45bd4fc72047b5
parent7ced7ebdf8bc28355c33b55111487ab77e3e001c (diff)
gnu: python-dateutils: Skip tests.
* gnu/packages/time.scm (python-dateutils)[arguments] <tests?>: They require twine. [native-inputs]: Remove python-wheel. Change-Id: I136b5cbfb1cf8ea74b2bd217810781c75c514300
-rw-r--r--gnu/packages/time.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm
index 2258cf13af..c1ad2ba86f 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