guix_mirror_bot pushed a commit to branch next-master
in repository guix.
commit 57d23b17128e7f6ed09378fb68be957196776b0e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jan 11 13:34:44 2026 +0000
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
---
gnu/packages/python-xyz.scm | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e9c2b1ca43..bf1d16b7a9 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