diff options
author | Marius Bakke <marius@gnu.org> | 2022-01-21 19:51:53 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-01-22 10:23:00 +0100 |
commit | 16f9ca544d3ded9502ae2b75dbffba8f6e939e76 (patch) | |
tree | bf2d1287cde25901b9e032ead679c9faf719fe6d /gnu/packages/python-check.scm | |
parent | 9153e3b87286405cbf9f62de4f0140a900a82184 (diff) | |
download | guix-16f9ca544d3ded9502ae2b75dbffba8f6e939e76.tar.gz |
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.
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r-- | gnu/packages/python-check.scm | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 181aa8b05c..9eee1a621c 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1585,7 +1585,7 @@ supported by the MyPy typechecker.") (define-public python-mypy (package (name "python-mypy") - (version "0.910") + (version "0.931") (source (origin ;; Because of https://github.com/python/mypy/issues/9584, the @@ -1602,7 +1602,7 @@ supported by the MyPy typechecker.") (file-name (git-file-name name version)) (sha256 (base32 - "16ryn9d48ilcs3yrkrm9ynx36qnv0gkdkc4sbafpagcqgr2f0mrg")))) + "1v83flrdxh8grcp40qw04q4hzjflih9xwib64078vsxv2w36f817")))) (build-system python-build-system) (arguments `(#:phases @@ -1613,20 +1613,14 @@ supported by the MyPy typechecker.") (invoke "pytest" "mypyc"))))))) (native-inputs (list python-attrs - python-flake8 - python-flake8-bugbear - python-flake8-pyi - python-importlib-metadata python-lxml python-psutil python-pytest - python-pytest-cov python-pytest-forked python-pytest-xdist python-virtualenv)) (propagated-inputs - (list python-mypy-extensions python-toml python-typing-extensions - python-typed-ast)) + (list python-mypy-extensions python-tomli python-typing-extensions)) (home-page "http://www.mypy-lang.org/") (synopsis "Static type checker for Python") (description "Mypy is an optional static type checker for Python that aims |