1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-30 05:51:19 +02:00

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>
This commit is contained in:
Sharlatan Hellseher
2026-01-11 13:34:44 +00:00
committed by Rutherther
parent 6435bf8cb7
commit 63fe654f4e

View File

@@ -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