diff options
Diffstat (limited to 'battering')
-rw-r--r-- | battering/packages/python-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/battering/packages/python-xyz.scm b/battering/packages/python-xyz.scm index 9a79399..2f9a6ac 100644 --- a/battering/packages/python-xyz.scm +++ b/battering/packages/python-xyz.scm @@ -908,3 +908,24 @@ Standard Annex #29.") "A cool helper for tracking time and throughput of code blocks, with beautiful human friendly renditions.") (license license:expat))) + +(define-public python-alive-progress + (package + (name "python-alive-progress") + (version "3.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "alive-progress" version)) + (sha256 + (base32 "1ssd1q7bic2w8j76bdx5qhq98f6rkpw8dxj1p5bgwm7ldw29vqpd")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-about-time python-grapheme)) + (native-inputs (list python-setuptools python-wheel)) + (home-page "https://github.com/rsalmei/alive-progress") + (synopsis + "Progress bar with real-time throughput, ETA, and animations") + (description + "This package provides a new kind of progress bar, with real-time throughput, +ETA, and very cool animations!") + (license license:expat))) |