python3Packages.confluent-kafka: 1.6.0 -> 1.7.0

This commit is contained in:
Martin Weinelt 2021-06-18 23:47:12 +02:00 committed by Jonathan Ringer
parent 6b7a420f95
commit a0b4638096
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,12 +1,12 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, rdkafka, requests, avro3k, avro ? null, futures ? null, enum34 ? null }:
buildPythonPackage rec {
version = "1.6.0";
version = "1.7.0";
pname = "confluent-kafka";
src = fetchPypi {
inherit pname version;
sha256 = "8a9caabdb02e87cd65c7f10f689ba3f1a15f8774de455e96fa5fc56eecfee63c";
sha256 = "80e01b4791513c27eded8517af847530dfdf04c43d99ff132ed9c3085933b75b";
};
buildInputs = [ rdkafka requests ] ++ (if isPy3k then [ avro3k ] else [ enum34 avro futures ]) ;