guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 69d80b31b0aa34ad1073949710560b77afc51dc8
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Jul 24 23:04:46 2025 +0200
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 <[email protected]>
---
gnu/packages/python-xyz.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 51a7168874..ec97de7fa1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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