guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit c9bfc116296703079fdae08a189c92597a212e05
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jun 1 22:32:45 2026 +0100
gnu: python-mock: Update to 5.2.0.
* gnu/packages/check.scm (python-mock): Update to 5.2.0.
[source]: Switch to git-fetch.
[propagated-inputs]: Remove python-six.
[native-inputs]: Remove python-wheel.
Change-Id: Idd923c1481f610efd6bcba54bf12b29ce43fdf71
---
gnu/packages/check.scm | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 109a46c1a6..b1a6c17ac1 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1578,20 +1578,20 @@ for every Python test framework. It supports nose,
py.test, and unittest.")
(define-public python-mock
(package
(name "python-mock")
- (version "5.1.0")
+ (version "5.2.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "mock" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/testing-cabal/mock")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0zbnp1kmf7ykc9bvlxamsp15rxsd0ar99v99lbh1hiysrkasm5jy"))))
+ (base32 "1ph3g75znd4k10vzmcrv0jqzhqmi6ps1a2icvxv7p6yn1sbbcb3b"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pytest
- python-setuptools
- python-wheel))
- (propagated-inputs
- (list python-six))
+ python-setuptools))
(home-page "https://github.com/testing-cabal/mock")
(synopsis "Python mocking and patching library for testing")
(description