diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-28 21:29:54 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-29 00:05:49 +0000 |
| commit | c0e6c0be076d56e486e04d42c80a4c9446a7edcf (patch) | |
| tree | 93daa915352eaab1a5eb624ef2c4dd5533853ff6 /gnu/packages/python-xyz.scm | |
| parent | 389e9019a754d4a4151634d865fa0780c5f85b9c (diff) | |
gnu: python-multiplex: Fix tests.
* gnu/packages/python-xyz.scm (python-easy-ansi-0.3): New variable.
(python-multiplex)[propagated-inputs]: Remove python-easy-ansi; add
python-easy-ansi-0.3.
Change-Id: I791e4a34479732cba10be00ae883cc53fa6fa6e9
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ec2a16b6346..e7699fe5e50 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1372,7 +1372,7 @@ for Python.") (list python-aiofiles python-aiostream python-click - python-easy-ansi + python-easy-ansi-0.3 python-pyte)) (home-page "https://github.com/dankilman/multiplex") (synopsis "Parallel stream of outputs from multiple processes") @@ -24347,6 +24347,22 @@ a tool to quickly create nice-looking screens in your terminal window. You can even create animations with the cursor controls.") (license license:expat))) +(define-public python-easy-ansi-0.3 + (package + (inherit python-easy-ansi) + (name "python-easy-ansi") + (version "0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/joeysbytes/easy-ansi") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0albh55ynzs98qy9pln4qaxw5qhhh3lk09jy9bx19gycrp1c3lc3")))) + (arguments '()))) + (define-public python-pycosat (package (name "python-pycosat") |
