[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64896] [PATCH v2 3/8] gnu: Add python-log-symbols.
From: |
Jean-Pierre De Jesus DIAZ |
Subject: |
[bug#64896] [PATCH v2 3/8] gnu: Add python-log-symbols. |
Date: |
Fri, 28 Jul 2023 14:23:58 +0200 |
* gnu/packages/terminals.scm (python-log-symbols): New variable.
Signed-off-by: Jean-Pierre De Jesus DIAZ <jean@foundationdevices.com>
---
gnu/packages/terminals.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 8f7e3c0e9a..bfb333aba9 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -1178,6 +1178,34 @@ (define-public python-curtsies
per-line fullscreen terminal rendering, and keyboard input event reporting.")
(license license:expat)))
+(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 #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'relax-requirements
+ (lambda _
+ (substitute* "requirements-dev.txt"
+ (("(.*)==(.*)$" _ dep ver)
+ (string-append dep ">=" ver))))))))
+ (propagated-inputs (list python-colorama))
+ (native-inputs (list python-coverage python-nose python-pylint python-tox))
+ (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-spinners
(package
(name "python-spinners")
--
2.34.1
- [bug#64896] [PATCH 7/8] gnu: Add python-milc., (continued)
- [bug#64896] [PATCH 7/8] gnu: Add python-milc., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH 6/8] gnu: Add python-dotty-dict., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH 3/8] gnu: Add python-log-symbols., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH 8/8] gnu: Add qmk., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH 4/8] gnu: Add python-halo., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH 5/8] gnu: Add python-hjson., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH v2 0/8] gnu: Add qmk., Jean-Pierre De Jesus DIAZ, 2023/07/28
- [bug#64896] [PATCH v2 4/8] gnu: Add python-halo., Jean-Pierre De Jesus DIAZ, 2023/07/28
- [bug#64896] [PATCH v2 1/8] gnu: Add python-hid., Jean-Pierre De Jesus DIAZ, 2023/07/28
- [bug#64896] [PATCH v2 2/8] gnu: Add python-spinners., Jean-Pierre De Jesus DIAZ, 2023/07/28
- [bug#64896] [PATCH v2 3/8] gnu: Add python-log-symbols.,
Jean-Pierre De Jesus DIAZ <=
- [bug#64896] [PATCH v2 5/8] gnu: Add python-hjson., Jean-Pierre De Jesus DIAZ, 2023/07/28
- [bug#64896] [PATCH v2 6/8] gnu: Add python-dotty-dict., Jean-Pierre De Jesus DIAZ, 2023/07/28
- [bug#64896] [PATCH v2 8/8] gnu: Add qmk., Jean-Pierre De Jesus DIAZ, 2023/07/28
- [bug#64896] [PATCH v2 7/8] gnu: Add python-milc., Jean-Pierre De Jesus DIAZ, 2023/07/28