guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 23217ea388f39adda737e8fde089eccec4cb5ec4
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Oct 29 00:02:32 2025 +0100
gnu: python-wcwidth: Remove coverage inputs.
* gnu/packages/python-xyz.scm (python-wcwidth)
[native-inputs]: Remove python-pytest-cov, python-wheel.
[description]: Improve style.
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ef6bdba583..16e6049132 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -40362,17 +40362,15 @@ operating systems and an elegant approach to
concurrency using threading.")
(base32
"1dbj74q1iz349sdkxrkc90f7xd4y7a9bdvgxg3cqdcly7430rskj"))))
(build-system pyproject-build-system)
- (native-inputs (list python-pytest
- python-pytest-cov
- python-setuptools
- python-wheel))
+ (native-inputs (list python-pytest python-setuptools))
(home-page "https://github.com/jquast/wcwidth")
(synopsis "Measure number of terminal column cells of wide-character
codes")
- (description "Wcwidth measures the number of terminal column cells of
-wide-character codes. It is useful for those implementing a terminal emulator,
-or programs that carefully produce output to be interpreted by one. It is a
-Python implementation of the @code{wcwidth} and @code{wcswidth} C functions
-specified in POSIX.1-2001 and POSIX.1-2008.")
+ (description
+ "Wcwidth measures the number of terminal column cells of wide-character
+codes. It is useful for those implementing a terminal emulator, or programs
+that carefully produce output to be interpreted by one. It is a Python
+implementation of the @code{wcwidth} and @code{wcswidth} C functions specified
+in POSIX.1-2001 and POSIX.1-2008.")
(license license:expat)))
(define-public python-whatever