efraim pushed a commit to branch master
in repository guix.
commit 1b995533176e205d7ef92354e7c04be24a52b913
Author: Efraim Flashner <[email protected]>
Date: Wed Dec 30 16:29:19 2015 +0200
gnu: python-flake8: Update to 2.5.1.
* gnu/packages/python.scm (python-flake8): Update to 2.5.1.
---
gnu/packages/python.scm | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index acceb2f..bd38466 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -5073,17 +5073,14 @@ complexity of Python source code.")
(define-public python-flake8
(package
(name "python-flake8")
- (version "2.4.1")
+ (version "2.5.1")
(source
(origin
(method url-fetch)
- (uri (string-append
- "https://pypi.python.org/packages/source/f/flake8/flake8-"
- version
- ".tar.gz"))
+ (uri (pypi-uri "flake8" version))
(sha256
(base32
- "0dvmrpv7x98xkzffjz1z7lqr90sp5zdz16bdwckfd1cckpjvnzif"))))
+ "00sn2g5ydriv5anbipcrprpv797kh4q8rfa75w3fc7v7n14fv2j4"))))
(build-system python-build-system)
(inputs
`(("python-setuptools" ,python-setuptools)