summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-11 13:34:44 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:23:00 +0100
commit63fe654f4ee7037266077ea0fe2de8a727514a3d (patch)
tree538fe1aabd2884b25178b9bebfb6194da375822c /gnu/packages/python-xyz.scm
parent6435bf8cb70ac3c54ffba9a2daa2a207cd498a17 (diff)
gnu: python-jinja2-time: Disable tests.
* gnu/packages/python-xyz.scm (python-jinja2-time): [arguments] <tests?>: Disable for now. [native-inputs]: Remove python-pytest. Change-Id: Ic4696e026980ebaf7e1301c33f2b7e4861ed1d92 Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm11
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d601ba2e7f0..9eeec24c968 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8863,6 +8863,8 @@ written in pure Python.")
(license license:bsd-3)))
(define-public python-jinja2-time
+ ;; XXX: No rleases since 2016, see:
+ ;; <https://codeberg.org/guix/guix/issues/5546>.
(package
(name "python-jinja2-time")
(version "0.2.0")
@@ -8876,8 +8878,13 @@ written in pure Python.")
(sha256
(base32 "1i7qihrs7wix7wjxlpif3iirhmbyahywpy5haj8abv4r3zbfafna"))))
(build-system pyproject-build-system)
- (native-inputs (list python-pytest python-setuptools))
- (propagated-inputs (list python-arrow python-jinja2))
+ (arguments
+ (list #:tests? #f)) ;all tests are broken
+ (native-inputs
+ (list python-setuptools))
+ (propagated-inputs
+ (list python-arrow
+ python-jinja2))
(home-page "https://github.com/hackebrot/jinja2-time")
(synopsis "Jinja2 Extension for Dates and Times")
(description