diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-10 12:09:21 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:09 +0100 |
| commit | aebb3100c22b4cee97cc1ca1a2fa667c9e26472b (patch) | |
| tree | 159d24327b839938c9d96befa3702b0050476637 | |
| parent | d1f493faac00bde02ec7deaeff10a766d39ce61a (diff) | |
gnu: python-log-symbols: Reduce closure size.
* gnu/packages/terminals.scm (python-log-symbols): Reduce closure size.
[arguments] <tests?>: Disable as no provided with PyPI archive.
<phases>: Remove 'relax-requirements.
[native-inputs]: Remove python-coverage, python-nose, python-pylint,
python-tox, and python-wheel.
Change-Id: I199f064ed8f2f2fcb7445a344ce841f20acb3463
| -rw-r--r-- | gnu/packages/terminals.scm | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index f053e95b29..135296f19d 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -1186,21 +1186,11 @@ the terminal. It also supports IPython/Jupyter.") "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)))))))) + (list #:tests? #f)) ;no tests in PyPI archive, tests depend on Nose (native-inputs - (list python-coverage - python-nose - python-pylint - python-setuptools - python-tox - python-wheel)) - (propagated-inputs (list python-colorama)) + (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 |
