guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 16de5304384a648cb73387e25524de1cd0ee7548 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Sat Aug 9 08:43:02 2025 +0100
gnu: python-repoze-lru: Swap Nose with Unittest. * gnu/packages/python-xyz.scm (python-repoze-lru): [arguments] <test-backend>: 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 9d4b600cb4..0718a20cdf 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8737,8 +8737,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