mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
Merge pull request #25879 from mlieberman85/add-kafka
confluent-kafka: init at 0.9.4
This commit is contained in:
commit
c14109c170
24
pkgs/development/python-modules/confluent-kafka/default.nix
Normal file
24
pkgs/development/python-modules/confluent-kafka/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, rdkafka, requests, avro3k, avro}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
version = "0.9.4";
|
||||||
|
pname = "confluent-kafka";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1v8apw9f8l01ql42jg1sfqv41yxvcbxn1a3ar01y0ni428swq6wk";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ rdkafka requests ] ++ (if isPy3k then [ avro3k ] else [ avro ]) ;
|
||||||
|
|
||||||
|
# Tests fail for python3 under this pypi release
|
||||||
|
doCheck = if isPy3k then false else true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Confluent's Apache Kafka client for Python";
|
||||||
|
homepage = "https://github.com/confluentinc/confluent-kafka-python";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ mlieberman85 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4059,6 +4059,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
confluent-kafka = callPackage ../development/python-modules/confluent-kafka {};
|
||||||
|
|
||||||
|
|
||||||
construct = buildPythonPackage rec {
|
construct = buildPythonPackage rec {
|
||||||
name = "construct-${version}";
|
name = "construct-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user