me
/
guix
Archived
1
0
Fork 0

gnu: Add python-flake8-todo.

* gnu/packages/python-xyz.scm (python-flake8-todo): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Giacomo Leidi 2021-08-30 00:57:21 +02:00 committed by Ludovic Courtès
parent 73e4462637
commit b6cc5200c9
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 21 additions and 0 deletions

View File

@ -9686,6 +9686,27 @@ lints.")
(description "This package provides a Flake8 lint for quotes.")
(license license:expat)))
(define-public python-flake8-todo
(package
(name "python-flake8-todo")
(version "0.7")
(source
(origin
(method url-fetch)
(uri (pypi-uri "flake8-todo" version))
(sha256
(base32
"05arm0sch3r8248035kilmf01z0mxsahw6vpbbz0d343zy8m8k3f"))))
(build-system python-build-system)
(propagated-inputs
`(("python-pycodestyle" ,python-pycodestyle)))
(home-page "https://github.com/schlamar/flake8-todo")
(synopsis "TODO notes checker, plugin for flake8")
(description
"This package provides the @code{flake8-todo} Python module, a
TODO notes checker plugin for flake8.")
(license license:expat)))
(define-public python-autoflake
(package
(name "python-autoflake")