1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

python: confluent-kafka: 0.11.4 -> 0.11.5

This commit is contained in:
Frederik Rietdijk 2018-07-22 12:06:52 +02:00
parent 58c146e47b
commit 68f529a0b3

View file

@ -1,12 +1,12 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, rdkafka, requests, avro3k, avro}:
buildPythonPackage rec {
version = "0.11.4";
version = "0.11.5";
pname = "confluent-kafka";
src = fetchPypi {
inherit pname version;
sha256 = "8cf480199685127c9692b0bf1e15eac82e71ae34b7967a016ab31a318741abb1";
sha256 = "bfb5807bfb5effd74f2cfe65e4e3e8564a9e72b25e099f655d8ad0d362a63b9f";
};
buildInputs = [ rdkafka requests ] ++ (if isPy3k then [ avro3k ] else [ avro ]) ;