guix_mirror_bot pushed a commit to branch ungraft
in repository guix.
commit 36c213471fea16fb87abce060e6f42ca7984ccc6
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Dec 15 13:14:06 2025 +0000
gnu: python-pytest-dependency: Update to 0.6.0.
* gnu/packages/check.scm (python-pytest-dependency): Update to 0.6.0.
[build-system]: Switch to pyproject-build-system.
[propagated-inputs]: Remove python-pytest.
[native-inputs]: Add python-pytest-bootstrap and python-setuptools.
Change-Id: I1517f7097a14ba09f5ea1bc64b17e4ab223ea1e3
---
gnu/packages/check.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 03118e1b72..0e2a3cbd0f 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -3790,19 +3790,19 @@ asynchronous code in Python (asyncio).")
(define-public python-pytest-dependency
(package
(name "python-pytest-dependency")
- (version "0.5.1")
+ (version "0.6.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pytest-dependency" version))
(sha256
(base32
- "0swl3mxca7nnjbb5grfzrm3fa2750h9vjsha0f2kyrljc6895a62"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-pytest))
- (home-page
- "https://github.com/RKrahl/pytest-dependency")
+ "1hdcidq4miqd5fvg9khvzw3gm3waxnp7wgqr5h39anfr75m0wjwk"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest-bootstrap
+ python-setuptools))
+ (home-page "https://github.com/RKrahl/pytest-dependency")
(synopsis "Manage dependencies of tests")
(description "This pytest plugin manages dependencies of tests. It allows
to mark some tests as dependent from other tests. These tests will then be