mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add python-setuptools-lint.
* gnu/packages/check.scm (python-setuptools-lint): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
0fe13918de
commit
0890cb9747
1 changed files with 18 additions and 0 deletions
|
@ -2672,6 +2672,24 @@ (define-public python-pylint
|
|||
possible to write plugins to add your own checks.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public python-setuptools-lint
|
||||
(package
|
||||
(name "python-setuptools-lint")
|
||||
(version "0.6.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "setuptools-lint" version))
|
||||
(sha256
|
||||
(base32
|
||||
"16a1ac5n7k7sx15cnk03gw3fmslab3a7m74dc45rgpldgiff3577"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs (list python-pylint))
|
||||
(home-page "https://github.com/johnnoone/setuptools-pylint")
|
||||
(synopsis "Run pylint with @command{python setup.py lint}")
|
||||
(description "This package expose pylint as a lint command into
|
||||
setup.py.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-paramunittest
|
||||
(package
|
||||
(name "python-paramunittest")
|
||||
|
|
Loading…
Reference in a new issue