From 935810e0f3182e80be9da6241d7208f0a7fc2e2a Mon Sep 17 00:00:00 2001 From: Yurii Rashkovskii Date: Wed, 12 Dec 2018 14:47:39 +0700 Subject: [PATCH] luigi: include boto3 A number of luigi modules use boto3 to access AWS and will not work without it. --- pkgs/applications/networking/cluster/luigi/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/luigi/default.nix b/pkgs/applications/networking/cluster/luigi/default.nix index 35721208a6e2..7e1fb6cf9c82 100644 --- a/pkgs/applications/networking/cluster/luigi/default.nix +++ b/pkgs/applications/networking/cluster/luigi/default.nix @@ -14,7 +14,7 @@ python3Packages.buildPythonApplication rec { sed -i 's/<2.2.0//' setup.py ''; - propagatedBuildInputs = with python3Packages; [ tornado_4 python-daemon ]; + propagatedBuildInputs = with python3Packages; [ tornado_4 python-daemon boto3 ]; # Requires tox, hadoop, and google cloud doCheck = false;