gnu: python-flake8: Update to 2.5.4.

* gnu/packages/python.scm (python-flake8): Update to 2.5.4.
[inputs]: Use recent python-pep8, python-pyflakes.
This commit is contained in:
Efraim Flashner 2016-02-25 20:07:37 +02:00
parent db251311cf
commit 43789136d2
1 changed files with 4 additions and 4 deletions

View File

@ -5187,19 +5187,19 @@ complexity of Python source code.")
(define-public python-flake8 (define-public python-flake8
(package (package
(name "python-flake8") (name "python-flake8")
(version "2.5.1") (version "2.5.4")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "flake8" version)) (uri (pypi-uri "flake8" version))
(sha256 (sha256
(base32 (base32
"00sn2g5ydriv5anbipcrprpv797kh4q8rfa75w3fc7v7n14fv2j4")))) "0bs9cz4fr99r2rwig1b8jwaadl1nan7kgpdzqwj0bwbckwbmh7nc"))))
(build-system python-build-system) (build-system python-build-system)
(inputs (inputs
`(("python-setuptools" ,python-setuptools) `(("python-setuptools" ,python-setuptools)
("python-pep8" ,python-pep8-1.5.7) ("python-pep8" ,python-pep8)
("python-pyflakes" ,python-pyflakes-0.8.1) ("python-pyflakes" ,python-pyflakes)
("python-mccabe" ,python-mccabe) ("python-mccabe" ,python-mccabe)
("python-mock" ,python-mock) ("python-mock" ,python-mock)
("python-nose" ,python-nose))) ("python-nose" ,python-nose)))