From f11a0157791087c1f371b685ff4e0c0a1e24cf97 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 3 Oct 2025 16:05:27 +0200 Subject: [PATCH] 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 --- gnu/packages/python-xyz.scm | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7a22d0b02e4fb80d0cbb0d8a04484d8347f4d74d..5c9d7892a640a3b4dbeabc998108ccf63fcee590 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