summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-09-22 01:37:29 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:55 +0100
commit7c0206ad81428031aae8f2d0364c55e777cf1a64 (patch)
treeee6a8440353d0128df087ebe1de0d4190a048464 /gnu/packages/python-xyz.scm
parent7c156003e8f29f30d431a65143ce8fdd01361499 (diff)
gnu: python-reretry: Fix tests.
* gnu/packages/python-xyz.scm (python-reretry) [source]: Switch to git-fetch. [native-inputs]: Add python-pytest, python-pytest-asyncio. Remove python-setuptools. Change-Id: I559f5d00d8093fd468a308f3b8588a75c0f75161 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm12
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1a7109206f..7569544eb5 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8938,12 +8938,16 @@ Microsoft Word (.docx) documents.")
(version "0.11.8")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "reretry" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/leshchenko1979/reretry")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1qrjsjzah8gw1bciqn8bhrj80fjjg13qg8jks7qs4bjipv71yygj"))))
+ (base32 "15c6275mcrkrq3zs0gyx06gr3xsg9ldrpyknfy4mbypgwjy6fp38"))))
(build-system pyproject-build-system)
- (native-inputs (list python-setuptools python-wheel))
+ (native-inputs
+ (list python-pytest python-pytest-asyncio python-setuptools))
(home-page "https://github.com/leshchenko1979/reretry")
(synopsis "Functional decorator for retrying on exceptions")
(description