gnu: python-mypy: Update to 0.931.

* gnu/packages/python-check.scm (python-mypy): Update to 0.931.
[native-inputs]: Remove PYTHON-FLAKE8, PYTHON-FLAKE8-BUGBEAR,
PYTHON-FLAKE8-PYI, PYTHON-IMPORTLIB-METADATA, and PYTHON-PYTEST-COV.
[propagated-inputs]: Remove PYTHON-TYPED-AST.  Replace PYTHON-TOML with
PYTHON-TOMLI.
This commit is contained in:
Marius Bakke 2022-01-21 19:51:53 +01:00
parent 9153e3b872
commit 16f9ca544d
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -1585,7 +1585,7 @@ (define-public python-mypy-extensions
(define-public python-mypy (define-public python-mypy
(package (package
(name "python-mypy") (name "python-mypy")
(version "0.910") (version "0.931")
(source (source
(origin (origin
;; Because of https://github.com/python/mypy/issues/9584, the ;; Because of https://github.com/python/mypy/issues/9584, the
@ -1602,7 +1602,7 @@ (define-public python-mypy
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"16ryn9d48ilcs3yrkrm9ynx36qnv0gkdkc4sbafpagcqgr2f0mrg")))) "1v83flrdxh8grcp40qw04q4hzjflih9xwib64078vsxv2w36f817"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -1613,20 +1613,14 @@ (define-public python-mypy
(invoke "pytest" "mypyc"))))))) (invoke "pytest" "mypyc")))))))
(native-inputs (native-inputs
(list python-attrs (list python-attrs
python-flake8
python-flake8-bugbear
python-flake8-pyi
python-importlib-metadata
python-lxml python-lxml
python-psutil python-psutil
python-pytest python-pytest
python-pytest-cov
python-pytest-forked python-pytest-forked
python-pytest-xdist python-pytest-xdist
python-virtualenv)) python-virtualenv))
(propagated-inputs (propagated-inputs
(list python-mypy-extensions python-toml python-typing-extensions (list python-mypy-extensions python-tomli python-typing-extensions))
python-typed-ast))
(home-page "http://www.mypy-lang.org/") (home-page "http://www.mypy-lang.org/")
(synopsis "Static type checker for Python") (synopsis "Static type checker for Python")
(description "Mypy is an optional static type checker for Python that aims (description "Mypy is an optional static type checker for Python that aims