guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 96dc2ba48c8d6d66b18ea45495ff07d35c5f89e0
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jan 18 21:34:25 2026 +0000
gnu: python-pytest-mock: Update to 3.15.1.
* gnu/packages/check.scm (python-pytest-mock): Update to 3.15.1.
[native-inputs]: Remove python-wheel.
Change-Id: I27c3ff15fec307dc06e62cb73c73861b567a5664
---
gnu/packages/check.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 6971ed6976..a9b0fdb90b 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1974,24 +1974,24 @@ pytest-lazy-fixture}.")
(define-public python-pytest-mock
(package
(name "python-pytest-mock")
- (version "3.14.0")
+ (version "3.15.1")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "pytest-mock" version))
+ (uri (pypi-uri "pytest_mock" version))
(sha256
- (base32 "1l0b864arbzrq13z635l1x9ial0w7pgz6svd0nyavkpy3rd2a697"))))
+ (base32 "03vsv2q11b6yhs33m9vg852an50qrdrdws92fqcxm5pkyqwa4j8q"))))
(build-system pyproject-build-system)
(arguments
(list
+ ;; tests: 85 passed, 5 skipped, 3 warnings
;; Skip the assertion rewriting tests, which don't work in the presence
;; of read-only Python modules (a limitation of Pytest).
#:test-flags #~(list "--assert=plain")))
(native-inputs
(list python-pytest-asyncio
python-setuptools
- python-setuptools-scm
- python-wheel))
+ python-setuptools-scm))
(propagated-inputs
(list python-pytest))
(home-page "https://github.com/pytest-dev/pytest-mock/")