summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm31
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 63eff843ad1..8dfa34e1d8a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -578,6 +578,37 @@ comparison operators, as defined in the original
578@url{http://goessner.net/articles/JsonPath/, JSONPath} proposal.") 578@url{http://goessner.net/articles/JsonPath/, JSONPath} proposal.")
579 (license license:asl2.0))) 579 (license license:asl2.0)))
580 580
581(define-public python-multiplex
582 (package
583 (name "python-multiplex")
584 (version "0.6.1")
585 (source
586 (origin
587 (method git-fetch) ;no tests in PyPI archive
588 (uri (git-reference
589 (url "https://github.com/dankilman/multiplex")
590 (commit version)))
591 (file-name (git-file-name name version))
592 (sha256
593 (base32 "1a662liqhiya47i6vrz3q03w08viqg3wj5j3g58mz175hcdcmmmv"))))
594 (build-system pyproject-build-system)
595 (native-inputs
596 (list python-poetry-core
597 python-pytest
598 python-pytest-asyncio))
599 (propagated-inputs
600 (list python-aiofiles
601 python-aiostream
602 python-click
603 python-easy-ansi
604 python-pyte))
605 (home-page "https://github.com/dankilman/multiplex")
606 (synopsis "Parallel stream of outputs from multiple processes")
607 (description
608 "This package provides a functionality to view output of multiple
609processes, in parallel, in the console, with an interactive TUI.")
610 (license license:expat)))
611
581(define-public python-pyxdameraulevenshtein 612(define-public python-pyxdameraulevenshtein
582 (package 613 (package
583 (name "python-pyxdameraulevenshtein") 614 (name "python-pyxdameraulevenshtein")