From 09e3cf583437ce421215dd28d2b94f574458b311 Mon Sep 17 00:00:00 2001 From: Jelle Licht Date: Tue, 17 Apr 2018 21:31:05 +0200 Subject: [PATCH] gnu: ansible: Add missing inputs * gnu/packages/admin.scm (ansible)[native-inputs]: Add python2-bcrypt and python2-pynacl. --- gnu/packages/admin.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 1dc5d2b241..5e2cf2d7ad 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1574,7 +1574,9 @@ (define-public ansible (patches (search-patches "ansible-wrap-program-hack.patch")))) (build-system python-build-system) (native-inputs - `(("python2-pycrypto" ,python2-pycrypto) + `(("python2-bcrypt" ,python2-bcrypt) + ("python2-pycrypto" ,python2-pycrypto) + ("python2-pynacl" ,python2-pynacl) ("python2-httplib2" ,python2-httplib2) ("python2-passlib" ,python2-passlib) ("python2-nose" ,python2-nose)