diff options
author | Jelle Licht <jlicht@fsfe.org> | 2018-04-17 21:31:05 +0200 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2018-04-24 14:45:27 +0200 |
commit | 09e3cf583437ce421215dd28d2b94f574458b311 (patch) | |
tree | 1ae5ad466685f7184f9b4f95ee8c97f8519168bb | |
parent | acc6e6955f5d481cf984cafb0459d3489feda99e (diff) | |
download | guix-09e3cf583437ce421215dd28d2b94f574458b311.tar.gz |
gnu: ansible: Add missing inputs
* gnu/packages/admin.scm (ansible)[native-inputs]: Add python2-bcrypt and python2-pynacl.
-rw-r--r-- | gnu/packages/admin.scm | 4 |
1 files changed, 3 insertions, 1 deletions
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 @@ of supported upstream metrics systems simultaneously.") (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) |