From cecae8262acad802d41e50160012b55d1f322bdf Mon Sep 17 00:00:00 2001 From: Paulus Esterhazy Date: Mon, 4 May 2015 08:55:12 +0200 Subject: [PATCH] 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. --- pkgs/tools/system/ansible/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/system/ansible/default.nix b/pkgs/tools/system/ansible/default.nix index c033814c631..284f6cbb3d2 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 = ''