guix-commits
[Top][All Lists]
Advanced

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

03/10: gnu: Add python-kitchen.


From: Leo Famulari
Subject: 03/10: gnu: Add python-kitchen.
Date: Thu, 29 Dec 2016 03:42:32 +0000 (UTC)

lfam pushed a commit to branch master
in repository guix.

commit 9f21414de4475a80722c827771af55ce7175fb19
Author: ng0 <address@hidden>
Date:   Wed Dec 21 11:47:11 2016 +0000

    gnu: Add python-kitchen.
    
    * gnu/packages/python.scm (python-kitchen, python2-kitchen): New variables.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/python.scm |   28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index b5a84d8..ea06d95 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2538,6 +2538,34 @@ version numbers.")
              (propagated-inputs
               `(("python2-functools32" ,python2-functools32))))))
 
+(define-public python-kitchen
+  (package
+    (name "python-kitchen")
+    (version "1.2.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "kitchen" version))
+       (sha256
+        (base32
+         "0ggv3p4x8jvmmzhp0xm00h6pvh1g0gmycw71rjwagnrj8n23vxrq"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-chardet" ,python-chardet)))
+    (home-page "https://fedorahosted.org/kitchen";)
+    (synopsis "Python API for snippets")
+    (description "@code{kitchen} module provides a python API for all sorts of
+little useful snippets of code that everybody ends up writing for their 
projects
+but never seem big enough to build an independent release.  Use kitchen and 
stop
+cutting and pasting that code over and over.")
+    (license (list license:lgpl2.1+
+                   ;; subprocess.py, test_subprocess.py,
+                   ;; kitchen/pycompat25/defaultdict.py:
+                   license:psfl))))
+
+(define-public python2-kitchen
+  (package-with-python2 python-kitchen))
+
 (define-public python-unidecode
   (package
     (name "python-unidecode")



reply via email to

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