summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-02-05 17:25:21 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-02-05 17:47:22 +0000
commitcc2b236e3777c0f7c758805289f42b3932668c57 (patch)
treea8664566d345cf551acdacc1f1af90331afbecda /gnu/packages
parent985c0fd63c1f0c1f2ab8adaac3109ccdad258a28 (diff)
gnu: Add python-takethetime.
This is a refreshed proposal from #35979 submitted on <20219-05-29>. * gnu/packages/python-xyz.scm (python-takethetime): New variable. Change-Id: I1384acdee68a46f7d97b217e609b5d2af69c6086 Co-authored-by: h.nasajpour <h.nasajpour@pantherx.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-xyz.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1c835103af0..63eff843ad1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -600,6 +600,29 @@ comparison operators, as defined in the original
600edit distance algorithm for Python in Cython for high performance.") 600edit distance algorithm for Python in Cython for high performance.")
601 (license license:bsd-3))) 601 (license license:bsd-3)))
602 602
603(define-public python-takethetime
604 (package
605 (name "python-takethetime")
606 (version "0.3.1")
607 (source
608 (origin
609 (method url-fetch)
610 (uri (pypi-uri "TakeTheTime" version))
611 (sha256
612 (base32 "1y9gzqb9l1f2smx8783ccjzjvby5mphshgrfks7s75mml59h9qyv"))))
613 (build-system pyproject-build-system)
614 (arguments
615 (list #:tests? #f)) ; tests are time dependent and not provided in PyPI
616 (native-inputs
617 (list python-setuptools
618 python-wheel))
619 (home-page "https://github.com/ErikBjare/TakeTheTime")
620 (synopsis "Timing chunks of code")
621 (description
622 "This package implements a functionality for time taking using context
623managers.")
624 (license license:expat)))
625
603(define-public python-trubar 626(define-public python-trubar
604 (package 627 (package
605 (name "python-trubar") 628 (name "python-trubar")