diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-03 16:05:27 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-03 21:53:31 +0100 |
| commit | f11a0157791087c1f371b685ff4e0c0a1e24cf97 (patch) | |
| tree | 6ad5f77ab3736a7a8628b70bc1d5ada2c55543da | |
| parent | cb9ad703351cd7eea4ac304d80f289de607cfcef (diff) | |
gnu: python-pyprind: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-pyprind):
[source, description]: Improve style.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools.
Change-Id: I53abd559089adfe62583952a650f516da22f2d7c
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/python-xyz.scm | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7a22d0b02e..5c9d7892a6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3795,20 +3795,21 @@ with Python's logging module that outputs records using terminal colors.") (package (name "python-pyprind") (version "2.11.3") - (source (origin - (method url-fetch) - (uri (pypi-uri "PyPrind" version)) - (sha256 - (base32 - "1gscnlvj37m421ch3akm3kddxqkrgbg5zrpwy2ky1j59w6vclzg3")))) - (build-system python-build-system) - (propagated-inputs - (list python-psutil)) + (source + (origin + (method url-fetch) + (uri (pypi-uri "PyPrind" version)) + (sha256 + (base32 "1gscnlvj37m421ch3akm3kddxqkrgbg5zrpwy2ky1j59w6vclzg3")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools)) + (propagated-inputs (list python-psutil)) (home-page "https://github.com/rasbt/pyprind") (synopsis "Python Progress Bar and Percent Indicator Utility") - (description "The PyPrind (Python Progress Indicator) module provides a -progress bar and a percentage indicator object that let you track the progress -of a loop structure or other iterative computation.") + (description + "The PyPrind (Python Progress Indicator) module provides a progress bar +and a percentage indicator object that let you track the progress of a loop +structure or other iterative computation.") (license license:bsd-3))) (define-public python-gh-md-to-html |
