guix_mirror_bot pushed a commit to branch master
in repository guix.
commit ee27101aa34bfe70b9ae3c1c68c7c89a7b307c6e
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Dec 24 17:18:38 2025 +0100
gnu: python-capturer: Update to 3.0.
* gnu/packages/python-xyz.scm (python-capturer): Update to 3.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools.
Change-Id: I0f44dcff9d7f77a8391a8841268e078f5dca0758
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1726f55dea..0e10aa23d9 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6205,19 +6205,19 @@ can be used to:
(define-public python-capturer
(package
(name "python-capturer")
- (version "2.4")
+ (version "3.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "capturer" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/xolox/python-capturer")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "05d6ji4j8ipiq0br7bwam38qc6hd9l1djmfxlzrxx19ziyjl4089"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f))
- (propagated-inputs
- (list python-humanfriendly))
+ (base32 "0fwrxa049gzin5dck7fvwhdp1856jrn0d7mcjcjsd7ndqvhgvjj1"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools))
+ (propagated-inputs (list python-humanfriendly))
(home-page "https://capturer.readthedocs.io")
(synopsis "Capture stdout and stderr streams of the current process")
(description