From 011de0d1f50b30048d531bab40224a1fac818810 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Wed, 1 Oct 2025 15:24:57 +0100 Subject: [PATCH] gnu: python-monthdelta: Fix tests. * gnu/packages/python-xyz.scm (python-monthdelta)[arguments] : Use 'unittest. [native-inputs]: Remove python-wheel. Change-Id: I9e23db42377deef7c6cc321217bbb130861ba890 --- gnu/packages/python-xyz.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6161792e6d43de3a4aee14a3fa9ed85dddcfcbc3..dd0ad27238243e246bf0d3d612adc600df0ee701 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -20866,6 +20866,7 @@ for the module to work under Python 3.3.") text.") (license license:bsd-3))) +;; XXX: Not maintained since 2012. (define-public python-monthdelta (package (name "python-monthdelta") @@ -20877,7 +20878,9 @@ text.") (sha256 (base32 "0iwcsk7ryjw5h1wp10ykwd01f3am8gdlga6461q1v1njsk0rxh41")))) (build-system pyproject-build-system) - (native-inputs (list python-setuptools python-wheel)) + (arguments + (list #:test-backend #~'unittest)) + (native-inputs (list python-setuptools)) (home-page "http://packages.python.org/MonthDelta") (synopsis "Date computations with months") (description