diff mbox series

[bug#64192,1/3] gnu: python-blessed: Add missing dependency.

Message ID 0a854f55ba3f074ad4e0f0eeb326b38a73afa6a9.1687269551.git.paul@apatience.com
State New
Headers show
Series gnu: bpython: Update to 0.24. | expand

Commit Message

Paul A. Patience June 20, 2023, 2:05 p.m. UTC
Fixes the build of python-curtsies.

The python-six dependency was accidentally removed in commit
9e1cbc62e54513ce92f7fc282700c87c93bfd25c.

* gnu/packages/python-xyz.scm (python-blessed)[propagated-inputs]: Add
python-six.
---
 gnu/packages/python-xyz.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index af9dd45d6e..fbbd96f4dd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28568,7 +28568,7 @@  (define-public python-blessed
      (list
       ;; Avoid python-pytest-coverage
       #:test-flags '(list "-c /dev/null")))
-    (propagated-inputs (list python-wcwidth))
+    (propagated-inputs (list python-six python-wcwidth))
     (native-inputs (list python-pytest))
     (home-page "https://github.com/jquast/blessed")
     (synopsis "Wrapper around terminal capabilities")