summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-06-17 00:56:33 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-06-20 11:35:59 +0100
commit7e793a4536ecd50e5c64a4ea34c5194e05ed6bae (patch)
treeb88e488f0f61c1036f638ad57268ebd0008f2a36 /gnu/packages/python-xyz.scm
parent73e653f8697d89ecc95799aa65ba376549da4152 (diff)
gnu: python-retrying: Switch to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-retrying) [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools, python-wheel. Change-Id: I73881fcb944e49309c491916e08a9874552f0ca9 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm9
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a7cff787b3..4ccd256337 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30447,11 +30447,10 @@ on regular expressions.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32
- "1kqipkbdaw5s1xg0gi29awm03vp1x8dz24pjidgxagvkvrjpzhi7"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-six))
+ (base32 "1kqipkbdaw5s1xg0gi29awm03vp1x8dz24pjidgxagvkvrjpzhi7"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-six))
+ (native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/rholder/retrying")
(synopsis "Library for adding retry behavior")
(description "Retrying is a general-purpose retrying library to simplify