mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-flake8-blind-except.
* gnu/packages/python-xyz.scm (python-flake8-blind-except): New variable. Co-authored-by: Hartmut Goebel <h.goebel@crazy-compilers.com>
This commit is contained in:
parent
7a8beb3dea
commit
2950ef2fff
1 changed files with 20 additions and 0 deletions
|
@ -10262,6 +10262,26 @@ cyclomatic complexity of Python source code.")
|
||||||
(list python-pycodestyle-2.6 python-entrypoints python-pyflakes-2.2
|
(list python-pycodestyle-2.6 python-entrypoints python-pyflakes-2.2
|
||||||
python-mccabe))))
|
python-mccabe))))
|
||||||
|
|
||||||
|
(define-public python-flake8-blind-except
|
||||||
|
(package
|
||||||
|
(name "python-flake8-blind-except")
|
||||||
|
(version "0.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "flake8-blind-except" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "05nxsxfzfhwsm8gys90228imm2qbnqnw5y8bfqyfngnbkmd5fnpj"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f)) ; no tests
|
||||||
|
(native-inputs (list python-pycodestyle))
|
||||||
|
(home-page "https://github.com/elijahandrews/flake8-blind-except")
|
||||||
|
(synopsis "Check for blind @code{except:} statements")
|
||||||
|
(description "This package provides a flake8 extension that checks for
|
||||||
|
blind @code{except:} statements.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-flake8-bugbear
|
(define-public python-flake8-bugbear
|
||||||
(package
|
(package
|
||||||
(name "python-flake8-bugbear")
|
(name "python-flake8-bugbear")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue