summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-25 11:31:59 +0100
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:22:57 +0100
commit441fa7921ca4bfce16dcd5f7edc85e887ec9b6ec (patch)
treea7fb0311b753fa729c5c8f2cf6d4f3fb6f289823 /gnu/packages/python-xyz.scm
parenta906bfacc3cbd70774e3d1218ead23b4dd54a5c9 (diff)
gnu: python-pebble: Update to 5.1.3.
* gnu/packages/python-xyz.scm (python-pebble): Update to 5.1.3. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: Ifee70d9f208865b7e9cb96950c7de428f01758ab Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm21
1 files changed, 9 insertions, 12 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f0b6a2e6ace..304519cff22 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14117,21 +14117,18 @@ percentage.")
(define-public python-pebble
(package
(name "python-pebble")
- (version "4.6.1")
+ (version "5.1.3")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "Pebble" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/noxdafox/pebble")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "16siqc3brbk7dp4d9sg48bjl6a8wyy24aib3il1hf4y2624draxh"))))
- (build-system python-build-system)
- (native-inputs
- (list python-pytest))
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda _ (invoke "python" "-m" "pytest" "-sv"))))))
+ (base32 "1x3rvgm5b0g33xlh8w68r50zwqrdwjafwri8y2lzxny8y4i01ffp"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools))
(home-page "https://github.com/noxdafox/pebble")
(synopsis "Threading and multiprocessing for Python")
(description