diff options
author | Hanketsu <hanketsu@egregore.fun> | 2025-03-04 16:04:58 +0100 |
---|---|---|
committer | Hanketsu <hanketsu@egregore.fun> | 2025-06-13 00:04:49 +0200 |
commit | 8b62ade668af9955405df3dc58794946e146fe5a (patch) | |
tree | cf94c3bf3f71a6afad8156c0c51d1056891fa519 | |
parent | 8af32bfc6f7aa0b200f10b75c98c5c981033c5a4 (diff) |
battering: Add python-alive-progress.
* battering/packages/python-xyz.scm (python-alive-progress): New variable.
-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))) |