kafka-python: init at 1.3.5
This commit is contained in:
parent
1354099daf
commit
8a716eb717
21
pkgs/development/python-modules/kafka-python/default.nix
Normal file
21
pkgs/development/python-modules/kafka-python/default.nix
Normal 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; [ ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user