guix-commits
[Top][All Lists]
Advanced

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

05/05: gnu: Add python-pykafka and python2-pykafka.


From: ???
Subject: 05/05: gnu: Add python-pykafka and python2-pykafka.
Date: Sat, 11 Jun 2016 04:53:42 +0000 (UTC)

iyzsong pushed a commit to branch master
in repository guix.

commit 45dda35eed09b1f565757ec77781731ca96dd8aa
Author: 宋文武 <address@hidden>
Date:   Tue Jun 7 21:54:06 2016 +0800

    gnu: Add python-pykafka and python2-pykafka.
    
    * gnu/packages/python.scm (python-pykafka, python2-pykafka): New variables.
---
 gnu/packages/python.scm |   30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index acdf4b3..b2d27ef 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -9096,3 +9096,33 @@ programming errors.")
 
 (define-public python2-kazoo
   (package-with-python2 python-kazoo))
+
+(define-public python-pykafka
+  (package
+    (name "python-pykafka")
+    (version "2.4.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "pykafka" version))
+              (sha256
+               (base32
+                "1id6sr159p6aa13bxcqyr9gln8sqg1l0ddzns5iws8kk5q1p5cfv"))))
+    (build-system python-build-system)
+    (arguments '(#:tests? #f)) ; XXX: needs zookeeper, kafka, etc.
+    (native-inputs
+     `(("python-gevent" ,python-gevent)
+       ("python-kazoo" ,python-kazoo)
+       ("python-setuptools" ,python-setuptools)
+       ("python-tabulate" ,python-tabulate)))
+    (inputs
+     `(("librdkafka" ,librdkafka)))
+    (home-page "https://pykafka.readthedocs.io/";)
+    (synopsis "Apache Kafka client for Python")
+    (description
+     "PyKafka is a client for the Apache Kafka distributed messaging system.
+It includes Python implementations of Kafka producers and consumers, which
+are optionally backed by a C extension built on librdkafka.")
+    (license asl2.0)))
+
+(define-public python2-pykafka
+  (package-with-python2 python-pykafka))



reply via email to

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