kafka-python: init at 1.3.5

This commit is contained in:
Moritz Drexl 2017-12-11 18:41:20 +01:00 committed by Frederik Rietdijk
parent 1354099daf
commit 8a716eb717
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi, tox }:
buildPythonPackage rec {
name = "${pname}-${version}";
version = "1.3.5";
pname = "kafka-python";
src = fetchPypi {
inherit pname version;
sha256 = "19m9fdckxqngrgh0www7g8rgi7z0kq13wkhcqy1r8aa4sxad0f5j";
};
buildInputs = [ tox ];
meta = with stdenv.lib; {
description = "Pure Python client for Apache Kafka";
homepage = https://github.com/dpkp/kafka-python;
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}

View file

@ -2850,6 +2850,8 @@ in {
confluent-kafka = callPackage ../development/python-modules/confluent-kafka {};
kafka-python = callPackage ../development/python-modules/kafka-python {};
construct = callPackage ../development/python-modules/construct {};
consul = buildPythonPackage (rec {