diff options
author | kiasoc5 <kiasoc5@disroot.org> | 2023-04-29 00:32:06 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-04-30 23:16:50 +0200 |
commit | e042567145235a659dd84a8c3f3d4825ed800a8e (patch) | |
tree | caae920da1016df754cf77ddd7547d194e89f427 /gnu | |
parent | 1bfba9086c0e24813eddad9960e0055789921cec (diff) | |
download | guix-e042567145235a659dd84a8c3f3d4825ed800a8e.tar.gz guix-e042567145235a659dd84a8c3f3d4825ed800a8e.zip |
gnu: plover: Fix build.
Fixes this error in tests:
`pkg_resources.DistributionNotFound: The 'wcwidth' distribution was not found and is required by the application`
* gnu/packages/stenography.scm (plover)[inputs]: Add python-wcwidth.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/stenography.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/stenography.scm b/gnu/packages/stenography.scm index f95910dcff..67f9754652 100644 --- a/gnu/packages/stenography.scm +++ b/gnu/packages/stenography.scm @@ -105,6 +105,7 @@ python-pyqt python-pyserial python-rtf-tokenize + python-wcwidth python-xlib qtsvg-5)) (home-page "https://www.openstenoproject.org/plover/") |