diff options
author | Kenny Ballou <kballou@devnulllabs.io> | 2018-07-30 13:17:30 -0600 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-08-13 11:25:20 -0400 |
commit | 504e26ed3238487adc62772798df6d41fc13668e (patch) | |
tree | c2fe3ef04b6be4acf274c036563820a7e7ff29cb | |
parent | 19006c9231430eb71ef0da347fa1b8f70a9ce729 (diff) | |
download | guix-504e26ed3238487adc62772798df6d41fc13668e.tar.gz |
gnu: ansible: update to 2.5.7
* gnu/packages/admin.scm (ansible): Update to 2.5.7. [arguments, native-inputs, inputs]: Use Python 3. [native-inputs, inputs]: Replace python-pycrypto with python-cryptography. Co-authored-by: Leo Famulari <leo@famulari.name>
-rw-r--r-- | gnu/packages/admin.scm | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index edc1349c46..265c01078f 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1573,34 +1573,31 @@ of supported upstream metrics systems simultaneously.") (define-public ansible (package (name "ansible") - (version "2.4.2.0") + (version "2.5.7") (source (origin (method url-fetch) (uri (pypi-uri "ansible" version)) (sha256 (base32 - "0n3n9py4s3aykiii31xq8g4wmd6693jvby0424pjrg0bna01apri")) + "0wbsjjx3xjlm8g50a9j9c6p9rn23jx32yn1234bf5rmj1qgy3p85")) (patches (search-patches "ansible-wrap-program-hack.patch")))) (build-system python-build-system) (native-inputs - `(("python2-bcrypt" ,python2-bcrypt) - ("python2-pycrypto" ,python2-pycrypto) - ("python2-pynacl" ,python2-pynacl) - ("python2-httplib2" ,python2-httplib2) - ("python2-passlib" ,python2-passlib) - ("python2-nose" ,python2-nose) - ("python2-mock" ,python2-mock) - ("python2-jinja2" ,python2-jinja2) - ("python2-pyyaml" ,python2-pyyaml) - ("python2-paramiko" ,python2-paramiko))) + `(("python-bcrypt" ,python-bcrypt) + ("python-pynacl" ,python-pynacl) + ("python-httplib2" ,python-httplib2) + ("python-passlib" ,python-passlib) + ("python-nose" ,python-nose) + ("python-mock" ,python-mock) + ("python-jinja2" ,python-jinja2) + ("python-pyyaml" ,python-pyyaml) + ("python-paramiko" ,python-paramiko))) (inputs - `(("python2-pycrypto" ,python2-pycrypto) - ("python2-jinja2" ,python2-jinja2) - ("python2-pyyaml" ,python2-pyyaml) - ("python2-paramiko" ,python2-paramiko))) - (arguments - `(#:python ,python-2)) ; incompatible with Python 3 + `(("python-cryptography" ,python-cryptography) + ("python-jinja2" ,python-jinja2) + ("python-pyyaml" ,python-pyyaml) + ("python-paramiko" ,python-paramiko))) (home-page "https://www.ansible.com/") (synopsis "Radically simple IT automation") (description "Ansible is a radically simple IT automation system. It |