linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / confluent-kafka / default.nix
blob589753cd1cb5aba2bd97aa6a29fa45612e1c6a1e
1 { lib, buildPythonPackage, fetchPypi, isPy3k, rdkafka, requests, avro3k, avro, futures, enum34 }:
3 buildPythonPackage rec {
4   version = "1.6.0";
5   pname = "confluent-kafka";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "8a9caabdb02e87cd65c7f10f689ba3f1a15f8774de455e96fa5fc56eecfee63c";
10   };
12   buildInputs = [ rdkafka requests ] ++ (if isPy3k then [ avro3k ] else [ enum34 avro futures ]) ;
14   # No tests in PyPi Tarball
15   doCheck = false;
17   meta = with lib; {
18     description = "Confluent's Apache Kafka client for Python";
19     homepage = "https://github.com/confluentinc/confluent-kafka-python";
20     license = licenses.asl20;
21     maintainers = with maintainers; [ mlieberman85 ];
22   };