From ee27101aa34bfe70b9ae3c1c68c7c89a7b307c6e Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Wed, 24 Dec 2025 17:18:38 +0100 Subject: [PATCH] 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 --- 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 1726f55dead69bd81f1264584d5670d5ca494955..0e10aa23d9ec2b3392214441db185ba092c978c4 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