guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit f7211e9195c5cea49e8eafa31fdc4ed07442fa32
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jul 18 13:42:53 2025 +0100
gnu: python-pytest-datadir: Update to 1.7.2.
* gnu/packages/check.scm (python-pytest-datadir): Update to 1.7.2.
[propagated-inputs]: Remove python-pytest and python-wheel.
[native-inputs]: Add python-pytest-bootstrap and python-setuptools.
Change-Id: Iedc70026ae971cc7629cef002a66b989aef534e3
---
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 026f5e0ef5..f6a25332b4 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -4020,19 +4020,19 @@ skipped if any of the dependencies did fail or has been
skipped.")
(define-public python-pytest-datadir
(package
(name "python-pytest-datadir")
- (version "1.3.1")
+ (version "1.7.2")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "pytest-datadir" version))
+ (uri (pypi-uri "pytest_datadir" version))
(sha256
(base32
- "066bg6wlzgq2pqnjp73dfrcmk8951xw3aqcxa3p1axgqimrixbyk"))))
- (build-system python-build-system)
+ "0gj49053hzb3xchzrsp14hj7d4fakhxmvrv895g218yh6n525x8m"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-setuptools-scm))
- (propagated-inputs
- (list python-pytest python-wheel))
+ (list python-pytest-bootstrap
+ python-setuptools
+ python-setuptools-scm))
(home-page "https://github.com/gabrielcnr/pytest-datadir")
(synopsis "Pytest plugin for manipulating test data directories and files")
(description