summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-03-15 23:52:04 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-18 14:37:11 +0100
commit81bff6014a152840b7145e2a4c71093881c9dece (patch)
tree7535bca42fe09c892ee7b84695f4b7169ced08df
parenta04004bc08ddec68f3bbc6690a16b3c724dd7eb0 (diff)
gnu: python-mypy: Update to 1.18.2.
* gnu/packages/python-check.scm (python-mypy): Update to 1.18.2. Change-Id: Ie868791669b01f401af7ff3ac655e9772d18eb26 Merges:: guix/guix!7207 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-check.scm15
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 31146b4d4d..3d13ffb253 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1859,14 +1859,16 @@ HTTP @code{multipart/form-data} parsers and generators.")
(define-public python-mypy
(package
(name "python-mypy")
- (version "1.16.1")
+ (version "1.18.2")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "mypy" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/python/mypy")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "1avv8cj0qfhpw4s36bjhg994rml35fs4ndz78xg1r14l4050ml3b"))))
+ (base32 "1nz5nxbw92milfq71df24p2nisw2q04gi8qh7f2p5az39y0fx1yq"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -1890,8 +1892,7 @@ HTTP @code{multipart/form-data} parsers and generators.")
python-pytest
python-pytest-xdist
python-setuptools
- python-types-setuptools
- python-wheel))
+ python-types-setuptools))
(propagated-inputs
(list python-mypy-extensions
python-pathspec