all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH 2/5] gnu: Add python-radon
  2017-03-26  9:56 [PATCH 1/5] gnu: Add python-mando-0.3.1 Muriithi Frederick Muriuki
@ 2017-03-26  9:56 ` Muriithi Frederick Muriuki
  0 siblings, 0 replies; 11+ messages in thread
From: Muriithi Frederick Muriuki @ 2017-03-26  9:56 UTC (permalink / raw)
  To: guix-devel; +Cc: pjotr2017

* 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 df2928d..d94464c 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13995,3 +13995,36 @@ recognize TestCases.")
        (sha256
         (base32
          "0hh4irxpga058q496lcilbqfxwiyxxig1bal633s9bk1plfdy7g5"))))))
+
+(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:
+@itemize @bullet
+@item raw metrics: SLOC, comment lines, blank lines, &c.
+@item Cyclomatic Complexity (i.e.  McCabe’s Complexity)
+@item Halstead metrics (all of them)
+@item the Maintainability Index (a Visual Studio metric)
+@end itemize")
+    (license license:expat)))
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 2/5] gnu: Add python-radon
@ 2017-04-05  7:01 Muriithi Frederick Muriuki
  2017-04-05  7:01 ` [PATCH 3/5] gnu: Add python-httpbin Muriithi Frederick Muriuki
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Muriithi Frederick Muriuki @ 2017-04-05  7:01 UTC (permalink / raw)
  To: guix-devel

* 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:
+@itemize @bullet
+@item raw metrics: SLOC, comment lines, blank lines, &c.
+@item Cyclomatic Complexity (i.e.  McCabe’s Complexity)
+@item Halstead metrics (all of them)
+@item the Maintainability Index (a Visual Studio metric)
+@end itemize")
+    (license license:expat)))
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 3/5] gnu: Add python-httpbin
  2017-04-05  7:01 [PATCH 2/5] gnu: Add python-radon Muriithi Frederick Muriuki
@ 2017-04-05  7:01 ` Muriithi Frederick Muriuki
  2017-04-05  7:01 ` [PATCH 4/5] gnu: Add python-pytest-httpbin Muriithi Frederick Muriuki
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 11+ messages in thread
From: Muriithi Frederick Muriuki @ 2017-04-05  7:01 UTC (permalink / raw)
  To: guix-devel

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 9c850db..8f08ddd 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14006,3 +14006,27 @@ recognize TestCases.")
 @item the Maintainability Index (a Visual Studio metric)
 @end itemize")
     (license license:expat)))
+
+(define-public python-httpbin
+  (package
+    (name "python-httpbin")
+    (version "0.5.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "httpbin" version))
+       (sha256
+        (base32
+         "1dc92lnk846hpilslrqnr63x55cxll4qx88gif8fm521gv9cbyvr"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-decorator" ,python-decorator)
+       ("python-flask" ,python-flask)
+       ("python-itsdangerous" ,python-itsdangerous)
+       ("python-markupsafe" ,python-markupsafe)
+       ("python-six" ,python-six)))
+    (home-page "https://github.com/Runscope/httpbin")
+    (synopsis "HTTP Request and Response Service")
+    (description "HTTP Request and Response Service which covers all kinds of HTTP
+scenarios")
+    (license license:expat)))
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 4/5] gnu: Add python-pytest-httpbin
  2017-04-05  7:01 [PATCH 2/5] gnu: Add python-radon Muriithi Frederick Muriuki
  2017-04-05  7:01 ` [PATCH 3/5] gnu: Add python-httpbin Muriithi Frederick Muriuki
@ 2017-04-05  7:01 ` Muriithi Frederick Muriuki
  2017-04-11  4:02   ` Leo Famulari
  2017-04-05  7:01 ` [PATCH 5/5] gnu: Add python-sphinx-rtd-theme-0.1.9 Muriithi Frederick Muriuki
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Muriithi Frederick Muriuki @ 2017-04-05  7:01 UTC (permalink / raw)
  To: guix-devel

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 8f08ddd..0ab3d04 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14030,3 +14030,27 @@ recognize TestCases.")
     (description "HTTP Request and Response Service which covers all kinds of HTTP
 scenarios")
     (license license:expat)))
+
+(define-public python-pytest-httpbin
+  (package
+    (name "python-pytest-httpbin")
+    (version "0.0.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pytest-httpbin" version))
+       (sha256
+        (base32
+         "08ghq923dn33rllip3vap2p9fb680g0i96jdn5lcpfy8amq8mbq3"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-six" ,python-six)
+       ("python-httpbin" ,python-httpbin)
+       ("python-pytest" ,python-pytest)))
+    (home-page
+     "https://github.com/kevin1024/pytest-httpbin")
+    (synopsis
+     "Easily test your HTTP library against a local copy of httpbin")
+    (description
+     "Easily test your HTTP library against a local copy of httpbin")
+    (license license:expat)))
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 5/5] gnu: Add python-sphinx-rtd-theme-0.1.9
  2017-04-05  7:01 [PATCH 2/5] gnu: Add python-radon Muriithi Frederick Muriuki
  2017-04-05  7:01 ` [PATCH 3/5] gnu: Add python-httpbin Muriithi Frederick Muriuki
  2017-04-05  7:01 ` [PATCH 4/5] gnu: Add python-pytest-httpbin Muriithi Frederick Muriuki
@ 2017-04-05  7:01 ` Muriithi Frederick Muriuki
  2017-04-11  4:04   ` Leo Famulari
  2017-04-11  3:53 ` [PATCH 2/5] gnu: Add python-radon Leo Famulari
  2017-04-11  4:01 ` Leo Famulari
  4 siblings, 1 reply; 11+ messages in thread
From: Muriithi Frederick Muriuki @ 2017-04-05  7:01 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/python.scm (python-sphinx-rtd-theme-0.1.9): New variable.
---
 gnu/packages/python.scm | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 0ab3d04..7ca2593 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14054,3 +14054,19 @@ scenarios")
     (description
      "Easily test your HTTP library against a local copy of httpbin")
     (license license:expat)))
+
+(define-public python-sphinx-rtd-theme-0.1.9
+  (package
+    (inherit python-sphinx-rtd-theme)
+    (name "python-sphinx-rtd-theme")
+    (version "0.1.9")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "sphinx_rtd_theme" version))
+       (sha256
+        (base32
+         "18d0r63w7jpdrk4q5qy26n08vdlmnj9sar93akwjphyambw4cf17"))))
+    (propagated-inputs
+     `(("python-sphinx" ,python-sphinx-1.5.3)
+       ("python-snowballstemmer" ,python-snowballstemmer)))))
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/5] gnu: Add python-radon
  2017-04-05  7:01 [PATCH 2/5] gnu: Add python-radon Muriithi Frederick Muriuki
                   ` (2 preceding siblings ...)
  2017-04-05  7:01 ` [PATCH 5/5] gnu: Add python-sphinx-rtd-theme-0.1.9 Muriithi Frederick Muriuki
@ 2017-04-11  3:53 ` Leo Famulari
  2017-04-11  4:00   ` Leo Famulari
  2017-04-11  4:01 ` Leo Famulari
  4 siblings, 1 reply; 11+ messages in thread
From: Leo Famulari @ 2017-04-11  3:53 UTC (permalink / raw)
  To: Muriithi Frederick Muriuki; +Cc: guix-devel

On Wed, Apr 05, 2017 at 10:01:48AM +0300, Muriithi Frederick Muriuki wrote:
> * gnu/packages/python.scm (python-radon): New variable.

Hi, this patch series includes patches 2 through 5. Can you re-send it
to <guix-patches@gnu.org> with patch 1?

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/5] gnu: Add python-radon
  2017-04-11  3:53 ` [PATCH 2/5] gnu: Add python-radon Leo Famulari
@ 2017-04-11  4:00   ` Leo Famulari
  0 siblings, 0 replies; 11+ messages in thread
From: Leo Famulari @ 2017-04-11  4:00 UTC (permalink / raw)
  To: Muriithi Frederick Muriuki; +Cc: guix-devel

On Mon, Apr 10, 2017 at 11:53:26PM -0400, Leo Famulari wrote:
> On Wed, Apr 05, 2017 at 10:01:48AM +0300, Muriithi Frederick Muriuki wrote:
> > * gnu/packages/python.scm (python-radon): New variable.
> 
> Hi, this patch series includes patches 2 through 5. Can you re-send it
> to <guix-patches@gnu.org> with patch 1?

I noticed these patches don't seem to depend on patch 1, so they could
be applied almost as-is. Comments to follow...

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/5] gnu: Add python-radon
  2017-04-05  7:01 [PATCH 2/5] gnu: Add python-radon Muriithi Frederick Muriuki
                   ` (3 preceding siblings ...)
  2017-04-11  3:53 ` [PATCH 2/5] gnu: Add python-radon Leo Famulari
@ 2017-04-11  4:01 ` Leo Famulari
  2017-04-14  7:21   ` Frederick Muriithi
  4 siblings, 1 reply; 11+ messages in thread
From: Leo Famulari @ 2017-04-11  4:01 UTC (permalink / raw)
  To: Muriithi Frederick Muriuki; +Cc: guix-devel

On Wed, Apr 05, 2017 at 10:01:48AM +0300, Muriithi Frederick Muriuki wrote:
> * gnu/packages/python.scm (python-radon): New variable.

LGTM, but can you add a Python 2 variant if it supports Python 2 as
well? We typically do this for all Python packages. [0]

[0]
https://www.gnu.org/software/guix/manual/html_node/Python-Modules.html#Python-Modules

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 4/5] gnu: Add python-pytest-httpbin
  2017-04-05  7:01 ` [PATCH 4/5] gnu: Add python-pytest-httpbin Muriithi Frederick Muriuki
@ 2017-04-11  4:02   ` Leo Famulari
  0 siblings, 0 replies; 11+ messages in thread
From: Leo Famulari @ 2017-04-11  4:02 UTC (permalink / raw)
  To: Muriithi Frederick Muriuki; +Cc: guix-devel

On Wed, Apr 05, 2017 at 10:01:50AM +0300, Muriithi Frederick Muriuki wrote:
> * gnu/packages/python.scm (python-pytest-httpbin): New variable.

If it supports Python 2, can you add a Python 2 variant?

> +    (version "0.0.7")

Can you add a brief code comment explaining why we need this older
version of pytest-httpbin?

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 5/5] gnu: Add python-sphinx-rtd-theme-0.1.9
  2017-04-05  7:01 ` [PATCH 5/5] gnu: Add python-sphinx-rtd-theme-0.1.9 Muriithi Frederick Muriuki
@ 2017-04-11  4:04   ` Leo Famulari
  0 siblings, 0 replies; 11+ messages in thread
From: Leo Famulari @ 2017-04-11  4:04 UTC (permalink / raw)
  To: Muriithi Frederick Muriuki; +Cc: guix-devel

On Wed, Apr 05, 2017 at 10:01:51AM +0300, Muriithi Frederick Muriuki wrote:
> * gnu/packages/python.scm (python-sphinx-rtd-theme-0.1.9): New variable.

> +(define-public python-sphinx-rtd-theme-0.1.9

Can you add a comment about what requires this old version? Even if the
dependent packages are not in Guix, a note like "Some software requires
older versions of python-sphinx-rtd-theme." will be helpful to future
readers.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/5] gnu: Add python-radon
  2017-04-11  4:01 ` Leo Famulari
@ 2017-04-14  7:21   ` Frederick Muriithi
  0 siblings, 0 replies; 11+ messages in thread
From: Frederick Muriithi @ 2017-04-14  7:21 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel

On Tue, Apr 11, 2017 at 7:01 AM, Leo Famulari <leo@famulari.name> wrote:
> On Wed, Apr 05, 2017 at 10:01:48AM +0300, Muriithi Frederick Muriuki wrote:
>> * gnu/packages/python.scm (python-radon): New variable.
>
> LGTM, but can you add a Python 2 variant if it supports Python 2 as
> well? We typically do this for all Python packages. [0]
>

You can ignore this patch, as I will be sending in a new set of
patches, complete with version corrections,
and all the issues you've mentioned corrected and updated.

Thanks.
-- 
Frederick M. Muriithi

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2017-04-14  7:21 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-05  7:01 [PATCH 2/5] gnu: Add python-radon Muriithi Frederick Muriuki
2017-04-05  7:01 ` [PATCH 3/5] gnu: Add python-httpbin Muriithi Frederick Muriuki
2017-04-05  7:01 ` [PATCH 4/5] gnu: Add python-pytest-httpbin Muriithi Frederick Muriuki
2017-04-11  4:02   ` Leo Famulari
2017-04-05  7:01 ` [PATCH 5/5] gnu: Add python-sphinx-rtd-theme-0.1.9 Muriithi Frederick Muriuki
2017-04-11  4:04   ` Leo Famulari
2017-04-11  3:53 ` [PATCH 2/5] gnu: Add python-radon Leo Famulari
2017-04-11  4:00   ` Leo Famulari
2017-04-11  4:01 ` Leo Famulari
2017-04-14  7:21   ` Frederick Muriithi
  -- strict thread matches above, loose matches on Subject: below --
2017-03-26  9:56 [PATCH 1/5] gnu: Add python-mando-0.3.1 Muriithi Frederick Muriuki
2017-03-26  9:56 ` [PATCH 2/5] gnu: Add python-radon Muriithi Frederick Muriuki

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.