summaryrefslogtreecommitdiff
path: root/gnu/packages/python.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r--gnu/packages/python.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e6b66f088a9..ce424675bda 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4979,6 +4979,29 @@ complexity of Python source code.")
4979(define-public python2-flake8 4979(define-public python2-flake8
4980 (package-with-python2 python-flake8)) 4980 (package-with-python2 python-flake8))
4981 4981
4982;; This will only be needed by the python-hacking package and will not be
4983;; necessary once python-hacking > 0.10.2 is released.
4984(define-public python-flake8-2.2.4
4985 (package (inherit python-flake8)
4986 (inputs
4987 `(("python-setuptools" ,python-setuptools)
4988 ("python-pep8" ,python-pep8-1.5.7)
4989 ("python-pyflakes" ,python-pyflakes-0.8.1)
4990 ("python-mccabe" ,python-mccabe-0.2.1)
4991 ("python-mock" ,python-mock)
4992 ("python-nose" ,python-nose)))
4993 (version "2.2.4")
4994 (source
4995 (origin
4996 (method url-fetch)
4997 (uri (pypi-uri "flake8" version))
4998 (sha256
4999 (base32
5000 "1r9wsry4va45h1rck5hxd3vzsg2q3y6lnl6pym1bxvz8ry19jwx8"))))))
5001
5002(define-public python2-flake8-2.2.4
5003 (package-with-python2 python-flake8-2.2.4))
5004
4982(define-public python-mistune 5005(define-public python-mistune
4983 (package 5006 (package
4984 (name "python-mistune") 5007 (name "python-mistune")