mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-04 09:16:31 +01:00
gnu: Add python-pytest-mypy.
* gnu/packages/check.scm (python-pytest-mypy): New variable.
This commit is contained in:
parent
21db2a0848
commit
5475a267ea
1 changed files with 21 additions and 0 deletions
|
@ -2200,6 +2200,27 @@ (define-public python-lit
|
||||||
failures.")
|
failures.")
|
||||||
(license license:ncsa)))
|
(license license:ncsa)))
|
||||||
|
|
||||||
|
(define-public python-pytest-mypy
|
||||||
|
(package
|
||||||
|
(name "python-pytest-mypy")
|
||||||
|
(version "0.9.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pytest-mypy" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0p5bd4r4gbwk1h7mpx1jkhdwkckapfz24bp9x5mmqb610ps3pylz"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(native-inputs (list python-setuptools-scm))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-attrs python-filelock python-mypy python-pytest))
|
||||||
|
(home-page "https://github.com/dbader/pytest-mypy")
|
||||||
|
(synopsis "Mypy static type checker plugin for Pytest")
|
||||||
|
(description "@code{pytest-mypi} is a static type checker plugin for
|
||||||
|
Pytest that runs the mypy static type checker on your source files as part of
|
||||||
|
a Pytest test execution.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-pytest-pep8
|
(define-public python-pytest-pep8
|
||||||
(package
|
(package
|
||||||
(name "python-pytest-pep8")
|
(name "python-pytest-pep8")
|
||||||
|
|
Loading…
Reference in a new issue