guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 86614655712f08d8611cf286fc838f6613a9329e
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Jan 27 17:32:10 2026 +0100
gnu: python-pytest-mypy-testing: Update to 0.2.0.
* gnu/packages/check.scm (python-pytest-mypy-testing): Update to 0.2.0.
[source]: Switch to git-fetch.
Change-Id: I0ead98ea98b9a2f7be7a047408253eca5119cdcf
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/check.scm | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 5cf4cd6b72..d8e05d9b55 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2869,13 +2869,16 @@ mypy plugins.")
(define-public python-pytest-mypy-testing
(package
(name "python-pytest-mypy-testing")
- (version "0.1.2")
+ (version "0.2.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "pytest-mypy-testing" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/davidfritzsche/pytest-mypy-testing")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0kqb3hi4jrc4knhc9pxv44m7c1jjkkwqx0dyghq4mw6wphlsv3q8"))))
+ (base32 "09m7cpk47hvpxylv5mwdlyhyafzikbkl70pvxgcb6ss24778w3l0"))))
(build-system pyproject-build-system)
(native-inputs (list python-flit-core))
(propagated-inputs (list python-mypy python-pytest))