aboutsummaryrefslogtreecommitdiff
path: root/battering
diff options
context:
space:
mode:
authorHanketsu <hanketsu@egregore.fun>2025-03-04 16:03:37 +0100
committerHanketsu <hanketsu@egregore.fun>2025-06-13 00:04:48 +0200
commit8af32bfc6f7aa0b200f10b75c98c5c981033c5a4 (patch)
tree6c4cd648aa6d46b72c9aa072a75e34d2f3d585c8 /battering
parent917fff7f20e9b1f556df28de731f91c473fbbf31 (diff)
battering: Add python-about-time.
* battering/packages/python-xyz.scm (python-about-time): New variable.
Diffstat (limited to 'battering')
-rw-r--r--battering/packages/python-xyz.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/battering/packages/python-xyz.scm b/battering/packages/python-xyz.scm
index c530601..9a79399 100644
--- a/battering/packages/python-xyz.scm
+++ b/battering/packages/python-xyz.scm
@@ -888,3 +888,23 @@ characters. More specifically, string manipulation and calculation functions
for working with grapheme cluster groups (graphemes) as defined by the Unicode
Standard Annex #29.")
(license license:expat)))
+
+(define-public python-about-time
+ (package
+ (name "python-about-time")
+ (version "4.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "about-time" version))
+ (sha256
+ (base32 "1kpy8yc71i4ryzxvpndpdkdby78f66c4kl99fjcpvriwsdi8hlva"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-setuptools python-wheel))
+ (home-page "https://github.com/rsalmei/about-time")
+ (synopsis
+ "Measure timing and throughput of code blocks, with human friendly representations.")
+ (description
+ "A cool helper for tracking time and throughput of code blocks, with
+beautiful human friendly renditions.")
+ (license license:expat)))