gnu: python-args: Disable tests and remove python-nose dependency.

* gnu/packages/python-xyz.scm (python-args)
[arguments]<#:tests?>: Unset.
[native-inputs]: Remove python-nose.

Change-Id: I3b42748b25665271b2a1d83f3eaac68e8621f232
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-07-24 23:04:46 +02:00 committed by Sharlatan Hellseher
parent 682dedf479
commit 69d80b31b0
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -20139,6 +20139,7 @@ minimal and fast API targeting the following uses:
(build-system pyproject-build-system)
(arguments
(list
#:tests? #f ; XXX: python-nose is deprecated.
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-args.py
@ -20146,7 +20147,7 @@ minimal and fast API targeting the following uses:
(substitute* "args.py"
(("basestring")
"str")))))))
(native-inputs (list python-nose python-setuptools python-wheel))
(native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/kennethreitz-archive/args")
(synopsis "Command-line argument parser")
(description