guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit cb6cc7e073f57214d121e4661846664a6714851b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jun 10 18:57:35 2026 +0100
gnu: python-pytest-xprocess: Build from git.
* gnu/packages/check.scm (python-pytest-xprocess):
[source]: Switch to git-fetch.
[propagated-inputs]: Remove python-pytest.
[native-inputs]: Remove python-wheel; add python-pytest-bootstrap.
Change-Id: I5b5d66e3a25f32afb8b55a803f146a66cb8a70f4
---
gnu/packages/check.scm | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 0df852a986..b63eb0e4a4 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2614,10 +2614,13 @@ enables you to test server connections locally.")
(version "1.0.2")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "pytest-xprocess" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pytest-dev/pytest-xprocess/")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "03y61h42sc343ddhsz7glxmv9ga83k4grrayfmbbrsl6fmip1qhm"))))
+ (base32 "06bxk48k67pkf629ndq0x3qfpllzz2blqqyj226yxdnbggq1slix"))))
(build-system pyproject-build-system)
(arguments
(if (target-riscv64?)
@@ -2629,11 +2632,11 @@ enables you to test server connections locally.")
" and not
test_startup_with_pattern_and_callback")))
'()))
(native-inputs
- (list python-setuptools
- python-setuptools-scm
- python-wheel))
+ (list python-pytest-bootstrap
+ python-setuptools
+ python-setuptools-scm))
(propagated-inputs
- (list python-pytest python-psutil))
+ (list python-psutil))
(home-page "https://github.com/pytest-dev/pytest-xprocess/")
(synopsis "Pytest plugin to manage external processes across test runs")
(description