me
/
guix
Archived
1
0
Fork 0

gnu: Add python-pytest-mypy-plugins.

* gnu/packages/check.scm (python-pytest-mypy-plugins): New variable.
master
Ricardo Wurmus 2023-05-04 10:51:23 +02:00
parent d60b77ee5d
commit f234cda89a
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 25 additions and 1 deletions

View File

@ -24,7 +24,7 @@
;;; Copyright © 2017, 2019 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2017, 2019 Mathieu Othacehe <m.othacehe@gmail.com>
;;; Copyright © 2017, 2019 Kei Kebreau <kkebreau@posteo.net> ;;; Copyright © 2017, 2019 Kei Kebreau <kkebreau@posteo.net>
;;; Copyright © 2017 Nikita <nikita@n0.is> ;;; Copyright © 2017 Nikita <nikita@n0.is>
;;; Copyright © 2015, 2017, 2018, 2020, 2021 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2015, 2017, 2018, 2020, 2021, 2023 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2016-2022 Marius Bakke <marius@gnu.org> ;;; Copyright © 2016-2022 Marius Bakke <marius@gnu.org>
;;; Copyright © 2017, 2018, 2020, 2021 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2017, 2018, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com> ;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com>
@ -2465,6 +2465,30 @@ Pytest that runs the mypy static type checker on your source files as part of
a Pytest test execution.") a Pytest test execution.")
(license license:expat))) (license license:expat)))
(define-public python-pytest-mypy-plugins
(package
(name "python-pytest-mypy-plugins")
(version "1.10.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "pytest-mypy-plugins" version))
(sha256
(base32
"05ng29b05gasqj195i9hyyhx5shmwypyvajb7plxwha3g36qq98z"))))
(build-system pyproject-build-system)
(arguments (list #:tests? #false)) ;there are none
(propagated-inputs (list python-chevron
python-decorator
python-mypy
python-pytest
python-pyyaml
python-regex))
(home-page "https://github.com/TypedDjango/pytest-mypy-plugins")
(synopsis "Pytest plugin for writing tests for mypy plugins")
(description "This package provides a pytest plugin for writing tests for
mypy plugins.")
(license license:expat)))
(define-public python-pytest-pep8 (define-public python-pytest-pep8
(package (package
(name "python-pytest-pep8") (name "python-pytest-pep8")