guix-devel
[Top][All Lists]
Advanced

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

[PATCH 2/5] gnu: Add python-radon


From: Muriithi Frederick Muriuki
Subject: [PATCH 2/5] gnu: Add python-radon
Date: Wed, 5 Apr 2017 10:01:48 +0300

* gnu/packages/python.scm (python-radon): New variable.
---
 gnu/packages/python.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 9dd045a..9c850db 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13973,3 +13973,36 @@ recognize TestCases.")
        (sha256
         (base32
          "17jlkdpqw22z1nyml5ybslilqkzmnk0dxxjml8bfghav1l5hbwd2"))))))
+
+(define-public python-radon
+  (package
+    (name "python-radon")
+    (version "1.5.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "radon" version))
+       (sha256
+        (base32
+         "1h6jv36am0i827182a04ki6291lyx4kp957xfr5njgprj4nd0qsl"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-colorama" ,python-colorama)
+       ("python-flake8-polyfill"
+        ,python-flake8-polyfill)
+       ("python-mando" ,python-mando-0.3.1)))
+    (native-inputs
+     `(("python-flake8" ,python-flake8)
+       ("python-tox" ,python-tox)
+       ("python-pytest" ,python-pytest)))
+    (home-page "https://radon.readthedocs.org/";)
+    (synopsis "Code Metrics in Python")
+    (description "Radon is a Python tool which computes various code metrics.  
Supported
+ metrics are:
address@hidden @bullet
address@hidden raw metrics: SLOC, comment lines, blank lines, &c.
address@hidden Cyclomatic Complexity (i.e.  McCabe’s Complexity)
address@hidden Halstead metrics (all of them)
address@hidden the Maintainability Index (a Visual Studio metric)
address@hidden itemize")
+    (license license:expat)))
-- 
2.10.2




reply via email to

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