From 0a0ea43b7e36eda4cc67bd7dcb5e85f2fbf56cd4 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 9 Aug 2025 08:43:02 +0100 Subject: [PATCH] gnu: python-repoze-lru: Swap Nose with Unittest. * gnu/packages/python-xyz.scm (python-repoze-lru): [arguments] : Use 'unittest. [native-inputs]: Remove python-coverage, python-nose, and python-wheel. Change-Id: Ib91cd3bedbe988436d12f5ba98876b615c8a3765 --- gnu/packages/python-xyz.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index bdfd6de260871d1dfe647bf9ef50c057c232d14a..f25d795e31b0ed1fe66faf8d9c77f9caee56f52f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8716,8 +8716,12 @@ Microsoft Word (.docx) documents.") (sha256 (base32 "0xzz1aw2smy8hdszrq8yhnklx6w1r1mf55061kalw3iq35gafa84")))) (build-system pyproject-build-system) + (arguments + (list + #:test-backend #~'unittest + #:test-flags #~(list "discover" "repoze"))) (native-inputs - (list python-coverage python-nose python-setuptools python-wheel)) + (list python-setuptools)) (home-page "https://www.repoze.org") (synopsis "Tiny LRU cache implementation and decorator") (description