about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/luigi
diff options
context:
space:
mode:
authorYurii Rashkovskii <yrashk@gmail.com>2018-12-12 14:47:39 +0700
committerYurii Rashkovskii <yrashk@gmail.com>2018-12-12 14:47:39 +0700
commit935810e0f3182e80be9da6241d7208f0a7fc2e2a (patch)
tree5dcf8846460bc9c221674da833be80142998d6e4 /pkgs/applications/networking/cluster/luigi
parent1a69b3303f3a406211441a4618e687a6e251c470 (diff)
luigi: include boto3
A number of luigi modules use boto3 to access AWS and will not work
without it.
Diffstat (limited to 'pkgs/applications/networking/cluster/luigi')
-rw-r--r--pkgs/applications/networking/cluster/luigi/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/cluster/luigi/default.nix b/pkgs/applications/networking/cluster/luigi/default.nix
index 35721208a6e2e..7e1fb6cf9c82e 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;