diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-10 18:03:43 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-17 08:59:31 +0100 |
commit | b8f5826a8c483eb1b8d827048c11cf86a5881c59 (patch) | |
tree | 8a4df85c1d8aac4afd516d8de29dacc0f2ccb3c6 /gnu/packages/python-xyz.scm | |
parent | 8257414a71124f0be2225bf978045bad3466c4ed (diff) |
gnu: python-log-symbols: Move to python-xyz.
* gnu/packages/terminals.scm (python-log-symbols): Move from here ...
* gnu/packages/python-xyz.scm: ... to here.
Change-Id: I40b1647eaf6c69f4cbca699bd0d1f4833e2ad438
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9fdf142ce7..b3f0ffc370 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1002,6 +1002,30 @@ comparison operators, as defined in the original @url{http://goessner.net/articles/JsonPath/, JSONPath} proposal.") (license license:asl2.0))) +(define-public python-log-symbols + (package + (name "python-log-symbols") + (version "0.0.14") + (source + (origin + (method url-fetch) + (uri (pypi-uri "log_symbols" version)) + (sha256 + (base32 "0mh5d0igw33libfmbsr1ri1p1y644p36nwaa2w6kzrd8w5pvq2yg")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no tests in PyPI archive, tests depend on Nose + (native-inputs + (list python-setuptools)) + (propagated-inputs + (list python-colorama)) + (home-page "https://github.com/manrajgrover/py-log-symbols") + (synopsis "Python library with graphical symbols for logging on the terminal") + (description + "This package provides a Python library with graphical symbols that can +be displayed on the terminal, with color if possible, for logging purposes.") + (license license:expat))) + (define-public python-multiplex (package (name "python-multiplex") |