diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-29 22:05:01 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:15 +0100 |
| commit | 3785994edf04d03701e1543a98fb7d5651c5f2e7 (patch) | |
| tree | 036d325532be321dd2c0722f08eadb090db49b85 /gnu/packages/python-xyz.scm | |
| parent | 319d59fc0dcc5f53998f264ec6a08883748f421f (diff) | |
gnu: python-retrying: Update to 1.4.1.
The project maintenance moved to <https://github.com/groodt/retrying>,
see: <https://github.com/rholder/retrying/issues/100>. PyPI release
<https://pypi.org/project/retrying/> points to the new home page .
* gnu/packages/python-xyz.scm (python-retrying): Update to 1.4.1.
[source] <url>: Update to the new location.
[propagated-inputs]: Remove python-six.
[native-inputs]: Remove python-wheel; add python-pytest.
[home-page]: Fix it.
Change-Id: Ibe003030dc4e2ea105e42fc1d0ea65ec721fcadc
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 55f492af85..a4a77dc55f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30762,20 +30762,19 @@ on regular expressions.") (define-public python-retrying (package (name "python-retrying") - (version "1.3.3") + (version "1.4.1") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/rholder/retrying") + (url "https://github.com/groodt/retrying") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1kqipkbdaw5s1xg0gi29awm03vp1x8dz24pjidgxagvkvrjpzhi7")))) + (base32 "0m1kf6mxmxzlf3sldzm50c3hq1hkh6fz1g97pdwyvbwdazb7blw9")))) (build-system pyproject-build-system) - (propagated-inputs (list python-six)) - (native-inputs (list python-setuptools python-wheel)) - (home-page "https://github.com/rholder/retrying") + (native-inputs (list python-pytest python-setuptools)) + (home-page "https://github.com/groodt/retrying") (synopsis "Library for adding retry behavior") (description "Retrying is a general-purpose retrying library to simplify the task of adding retry behavior to just about anything. |
