gnu: python-mccabe: Fix indentation.
* gnu/packages/python-xyz.scm (python-mccabe): Fix indentation.
This commit is contained in:
parent
43c889de85
commit
4ef16b23e6
1 changed files with 11 additions and 12 deletions
|
@ -8253,22 +8253,21 @@ PEP 8.")
|
||||||
(name "python-mccabe")
|
(name "python-mccabe")
|
||||||
(version "0.6.1")
|
(version "0.6.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "mccabe" version))
|
(uri (pypi-uri "mccabe" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"07w3p1qm44hgxf3vvwz84kswpsx6s7kvaibzrsx5dzm0hli1i3fx"))))
|
"07w3p1qm44hgxf3vvwz84kswpsx6s7kvaibzrsx5dzm0hli1i3fx"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-toml", python-toml)
|
`(("python-toml", python-toml)
|
||||||
("python-pytest" ,python-pytest-bootstrap)
|
("python-pytest" ,python-pytest-bootstrap)
|
||||||
("python-pytest-runner" ,python-pytest-runner)))
|
("python-pytest-runner" ,python-pytest-runner)))
|
||||||
(home-page "https://github.com/PyCQA/mccabe")
|
(home-page "https://github.com/PyCQA/mccabe")
|
||||||
(synopsis "McCabe checker, plugin for flake8")
|
(synopsis "McCabe checker, plugin for flake8")
|
||||||
(description
|
(description "This package provides a Flake8 plug-in to compute the McCabe
|
||||||
"This package provides a Flake8 plug-in to compute the McCabe cyclomatic
|
cyclomatic complexity of Python source code.")
|
||||||
complexity of Python source code.")
|
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python2-mccabe
|
(define-public python2-mccabe
|
||||||
|
|
Reference in a new issue