summary refs log tree commit diff
path: root/pkgs/tools/system/ansible/default.nix
diff options
context:
space:
mode:
authorPaulus Esterhazy <pesterhazy@gmail.com>2015-05-04 08:55:12 +0200
committerPaulus Esterhazy <pesterhazy@gmail.com>2015-05-04 08:55:12 +0200
commitcecae8262acad802d41e50160012b55d1f322bdf (patch)
tree398e1125f28abbac2a774f984db883205a34ab46 /pkgs/tools/system/ansible/default.nix
parent74742ad584fba8439aa971727764e890dbdf94d0 (diff)
downloadnixlib-cecae8262acad802d41e50160012b55d1f322bdf.tar
nixlib-cecae8262acad802d41e50160012b55d1f322bdf.tar.gz
nixlib-cecae8262acad802d41e50160012b55d1f322bdf.tar.bz2
nixlib-cecae8262acad802d41e50160012b55d1f322bdf.tar.lz
nixlib-cecae8262acad802d41e50160012b55d1f322bdf.tar.xz
nixlib-cecae8262acad802d41e50160012b55d1f322bdf.tar.zst
nixlib-cecae8262acad802d41e50160012b55d1f322bdf.zip
Add "six" as dependency
Ansible's official dynamic inventory script for AWS, ec2.py, requires
python library `six` to work properly. This commit adds the library as
a dependency.
Diffstat (limited to 'pkgs/tools/system/ansible/default.nix')
-rw-r--r--pkgs/tools/system/ansible/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/system/ansible/default.nix b/pkgs/tools/system/ansible/default.nix
index c033814c6311..284f6cbb3d28 100644
--- a/pkgs/tools/system/ansible/default.nix
+++ b/pkgs/tools/system/ansible/default.nix
@@ -20,7 +20,7 @@ pythonPackages.buildPythonPackage rec {
   dontPatchShebangs = true;
 
   propagatedBuildInputs = with pythonPackages; [
-    paramiko jinja2 pyyaml httplib2 boto
+    paramiko jinja2 pyyaml httplib2 boto six
   ];
 
   postFixup = ''