mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-pytest-pylint.
* gnu/packages/check.scm (python-pytest-pylint): New variable. Change-Id: Iba326a6fc9cbd333eb63edf2ed61dca45cdf2bc9 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
bcdd09db8e
commit
66dd876b50
1 changed files with 25 additions and 0 deletions
|
@ -32,6 +32,7 @@
|
||||||
;;; Copyright © 2025 Florent Pruvost <florent.pruvost@inria.fr>
|
;;; Copyright © 2025 Florent Pruvost <florent.pruvost@inria.fr>
|
||||||
;;; Copyright © 2025 Matthew Elwin <elwin@northwestern.edu>
|
;;; Copyright © 2025 Matthew Elwin <elwin@northwestern.edu>
|
||||||
;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr>
|
;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr>
|
||||||
|
;;; Copyright © 2025 Sergio Pastor Pérez <sergio.pastorperez@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -2727,6 +2728,30 @@ for the @code{pytest} framework.")
|
||||||
@command{pydocstyle}.")
|
@command{pydocstyle}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-pytest-pylint
|
||||||
|
(package
|
||||||
|
(name "python-pytest-pylint")
|
||||||
|
(version "0.21.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pytest-pylint" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0gjm9qy1rsngvli042szqc45y0q5zk1crq28ja01iyjw3n74nxl8"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-pylint))
|
||||||
|
(home-page "https://github.com/carsongee/pytest-pylint")
|
||||||
|
(synopsis "Pytest plugin to check source code with Pylint")
|
||||||
|
(description
|
||||||
|
"This plugin allows running Pylint with Pytest and have configurable rule
|
||||||
|
types (i.e. Convention, Warn, and Error) fail the build.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-pytest-qt
|
(define-public python-pytest-qt
|
||||||
(package
|
(package
|
||||||
(name "python-pytest-qt")
|
(name "python-pytest-qt")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue