guix-commits
[Top][All Lists]
Advanced

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

03/04: gnu: Add python-mccabe.


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

steap pushed a commit to branch master
in repository guix.

commit a59e017cb14ac4b30b46fbd7f2a76b29004d25f4
Author: Cyril Roelandt <address@hidden>
Date:   Sat Jun 27 00:30:07 2015 +0200

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index cf9d3ca..fd3fede 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3953,3 +3953,30 @@ PEP 8.")
     (description
       "Pyflakes statically checks Python source code for common errors.")
     (license license:expat)))
+
+(define-public python-mccabe
+  (package
+    (name "python-mccabe")
+    (version "0.3.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append
+               "https://pypi.python.org/packages/source/m/mccabe/mccabe-";
+               version
+               ".tar.gz"))
+        (sha256
+          (base32
+            "05ix3vdv5hjk4irl97n2n3c4g1vqvz7dbmkzs13f3bx97bxsczjz"))))
+    (build-system python-build-system)
+    (inputs
+      `(("python-setuptools" ,python-setuptools)))
+    (home-page "https://github.com/flintwork/mccabe";)
+    (synopsis "McCabe checker, plugin for flake8")
+    (description
+      "This package provides a Flake8 plug-in to compute the McCabe cyclomatic
+complexity of Python source code.")
+    (license expat)))
+
+(define-public python2-mccabe
+  (package-with-python2 python-mccabe))



reply via email to

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