From 6d2d50e8cba2636c3838eba240439d1eb6406d87 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sat, 29 Nov 2025 22:38:04 +0100 Subject: [PATCH] gnu: python-restructuredtext-lint: Remove python-nose native-inputs. * gnu/packages/python-xyz.scm (python-restructuredtext-lint) [arguments]<#:test-backend>: Switch to unittest. [native-inputs]: Remove python-nose. Change-Id: I1d59f2012ff939b5856c3cc482d40391f0d2fb5e Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 07a5686bd0835c8484c1adf75ec66aa3bb1a4a75..f0db26241e0f52e1d18ffc6562f919705c73fc70 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9131,9 +9131,9 @@ decorator for retrying on exceptions.") (sha256 (base32 "19ncbmnq2rnkqxhc9wf0q9whji34iyfv1pz6z61vnv4qhhdrn33v")))) (build-system pyproject-build-system) - (arguments (list #:test-backend #~'nose)) + (arguments (list #:test-backend #~'unittest)) (propagated-inputs (list python-docutils)) - (native-inputs (list python-nose python-setuptools)) + (native-inputs (list python-setuptools)) (home-page "https://github.com/twolfson/restructuredtext-lint") (synopsis "Linter") (description