guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: Add python-pyflakes.


From: Cyril Roelandt
Subject: 02/04: gnu: Add python-pyflakes.
Date: Mon, 29 Jun 2015 22:08:11 +0000

steap pushed a commit to branch master
in repository guix.

commit e31d7f44203595e6c1b14dfadc9064693f921bd0
Author: Cyril Roelandt <address@hidden>
Date:   Sat Jun 27 00:29:29 2015 +0200

    gnu: Add python-pyflakes.
    
    * gnu/packages/python.scm (python-pyflakes, python2-pyflakes): New 
variables.
---
 gnu/packages/python.scm |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 0bcaf5d..cf9d3ca 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3929,3 +3929,27 @@ PEP 8.")
 
 (define-public python2-pep8
   (package-with-python2 python-pep8))
+
+(define-public python-pyflakes
+  (package
+    (name "python-pyflakes")
+    (version "0.9.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append
+               "https://pypi.python.org/packages/source/p/pyflakes/pyflakes-";
+               version
+               ".tar.gz"))
+        (sha256
+          (base32
+            "0pvawddspdq0y22dbraq5gld9qr6rwa7zhmpfhl2b7v9rqiiqs82"))))
+    (build-system python-build-system)
+    (inputs
+      `(("python-setuptools" ,python-setuptools)))
+    (home-page
+      "https://github.com/pyflakes/pyflakes";)
+    (synopsis "Passive checker of Python programs")
+    (description
+      "Pyflakes statically checks Python source code for common errors.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]