mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: Add python-timeout-decorator.
* gnu/packages/python-xyz.scm (python-timeout-decorator): New variable.
This commit is contained in:
parent
16be8d4e7b
commit
b6b09a93fd
1 changed files with 17 additions and 0 deletions
|
@ -11217,6 +11217,23 @@ (define-public python-stopit
|
||||||
blocks or callables with two context managers and two decorators.")
|
blocks or callables with two context managers and two decorators.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-timeout-decorator
|
||||||
|
(package
|
||||||
|
(name "python-timeout-decorator")
|
||||||
|
(version "0.5.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "timeout-decorator" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1mxk2qyydhzncm93z08kvj5ssxq3fr2n7pkrrji28nqwvdc2ybva"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(home-page "https://github.com/pnpnpn/timeout-decorator")
|
||||||
|
(synopsis "Timeout decorator")
|
||||||
|
(description "This package provides a decorator that raises an error
|
||||||
|
when an operation takes longer than expected.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-straight-plugin
|
(define-public python-straight-plugin
|
||||||
(package
|
(package
|
||||||
(name "python-straight-plugin")
|
(name "python-straight-plugin")
|
||||||
|
|
Loading…
Reference in a new issue