gnu: python-autopep8: Update to 1.3.5
* gnu/packages/python.scm (python-autopep8): Update to 1.3.5 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
2dab4188ec
commit
a34bc5c913
|
@ -3788,28 +3788,28 @@ multivalue dictionary that retains the order of insertions and deletions.")
|
||||||
|
|
||||||
(define-public python-autopep8
|
(define-public python-autopep8
|
||||||
(package
|
(package
|
||||||
(name "python-autopep8")
|
(name "python-autopep8")
|
||||||
(version "1.3.2")
|
(version "1.3.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "autopep8" version))
|
(uri (pypi-uri "autopep8" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1p9pa1ffg4iy96l918808jggg9a69iaka5awmj8xid36yc5mk0ky"))))
|
"192bvhzi4d0claqxgzymvv7k3qnj627742bc8sgxpzjj42pd9112"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-pycodestyle" ,python-pycodestyle)))
|
`(("python-pycodestyle" ,python-pycodestyle)))
|
||||||
(home-page "https://github.com/hhatto/autopep8")
|
(home-page "https://github.com/hhatto/autopep8")
|
||||||
(synopsis "Format Python code according to the PEP 8 style guide")
|
(synopsis "Format Python code according to the PEP 8 style guide")
|
||||||
(description
|
(description
|
||||||
"@code{autopep8} automatically formats Python code to conform to
|
"@code{autopep8} automatically formats Python code to conform to
|
||||||
the PEP 8 style guide. It uses the pycodestyle utility to determine
|
the PEP 8 style guide. It uses the pycodestyle utility to determine
|
||||||
what parts of the code needs to be formatted. @code{autopep8} is
|
what parts of the code needs to be formatted. @code{autopep8} is
|
||||||
capable of fixing most of the formatting issues that can be reported
|
capable of fixing most of the formatting issues that can be reported
|
||||||
by pycodestyle.")
|
by pycodestyle.")
|
||||||
(license (license:non-copyleft
|
(license (license:non-copyleft
|
||||||
"https://github.com/hhatto/autopep8/blob/master/LICENSE"))))
|
"https://github.com/hhatto/autopep8/blob/master/LICENSE"))))
|
||||||
|
|
||||||
(define-public python2-autopep8
|
(define-public python2-autopep8
|
||||||
(package-with-python2 python-autopep8))
|
(package-with-python2 python-autopep8))
|
||||||
|
|
Loading…
Reference in New Issue