diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-20 14:18:29 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-20 16:18:50 +0100 |
commit | 6bd5b41ac65a075f2f7c1827abd85256bfc279dd (patch) | |
tree | c4acf0890d0c425f9276dd7a7249ce184984703a /gnu/packages/python-xyz.scm | |
parent | 9112d080c36cc12b3938fbc82e3ba0c8b69c4c10 (diff) |
gnu: python-timeout-decorator: Disable tests.
* gnu/packages/python-xyz.scm (python-timeout-decorator)[arguments]
<tests?>: Skip them for now.
Change-Id: I93bbc79be6345a4a0408f58dfbd944b9a48dddce
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7e7789c628..73c64f398e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17336,6 +17336,8 @@ blocks or callables with two context managers and two decorators.") (license license:expat))) (define-public python-timeout-decorator + ;; TODO: Remove when python-requests-caches releses a fresh version dropping + ;; it, see, <https://github.com/requests-cache/requests-cache/pull/1111>. (package (name "python-timeout-decorator") (version "0.5.0") @@ -17346,6 +17348,7 @@ blocks or callables with two context managers and two decorators.") (sha256 (base32 "1mxk2qyydhzncm93z08kvj5ssxq3fr2n7pkrrji28nqwvdc2ybva")))) (build-system pyproject-build-system) + (arguments (list #:tests? #f)) (native-inputs (list python-setuptools python-wheel)) (home-page "https://github.com/pnpnpn/timeout-decorator") (synopsis "Timeout decorator") |