From 63b3fbdfcaa18018e4e3ecdb0f0ec2d8a385d354 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 18 Jan 2026 21:34:25 +0000 Subject: [PATCH] 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 9fea42e1264..f0d12b76bc5 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/")