summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-18 21:34:25 +0000
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:27 +0100
commitb29cec7f6d0369f1fdc200fdd711995b49356db5 (patch)
tree9474b476edbadb1e216feb24fdffc8e7dc69be41 /gnu
parentc9785742c92b364187b0f3d50bb9cccdcfc89753 (diff)
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
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/check.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index a3d36d93cf..c1b7a2cf70 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1976,24 +1976,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/")