From 4c802105bcbee5ba3583b9024c678e4e10ba669b Mon Sep 17 00:00:00 2001 From: case Date: Thu, 3 Feb 2022 12:00:51 -0500 Subject: [PATCH] add confluent-kafka --- overrides/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/overrides/default.nix b/overrides/default.nix index 2b68f56..1d930ec 100644 --- a/overrides/default.nix +++ b/overrides/default.nix @@ -239,6 +239,14 @@ lib.composeManyExtensions [ } ); + confluent-kafka = super.confluent-kafka.overridePythonAttrs ( + old: { + buildInputs = (old.buildInputs or [ ]) ++ [ + pkgs.rdkafka + ]; + } + ); + cryptography = super.cryptography.overridePythonAttrs ( old: { nativeBuildInputs = (old.nativeBuildInputs or [ ])