diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-07-07 18:59:28 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-07-07 18:59:28 +0300 |
commit | 697e86ddca6b33b6364227f6aec9a2f0592ea503 (patch) | |
tree | 6873f889cf37ac8c99a9310ef78bb94dab6a6d3f /gnu | |
parent | 88535a4453439266bde800084b4dda9f02950cc2 (diff) | |
download | guix-697e86ddca6b33b6364227f6aec9a2f0592ea503.tar guix-697e86ddca6b33b6364227f6aec9a2f0592ea503.tar.gz |
gnu: ansible: Update to 2.1.0.0.
* gnu/packages/admin.scm (ansible): Update to 2.1.0.0.
[source]: Use pypi format.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/admin.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 7ece6bdcb5..447a96d4e8 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1345,17 +1345,14 @@ of supported upstream metrics systems simultaneously.") (define-public ansible (package (name "ansible") - (version "1.9.2") + (version "2.1.0.0") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/source/a/ansible/ansible-" - version - ".tar.gz")) + (uri (pypi-uri "ansible" version)) (sha256 (base32 - "007fzgsqaahb0y4gjdxxmir9kcni7wph2z14jhqgpz88idrz8pn2")))) + "1bfc2xiplpad6f2nwi48y0kps7xqnsll85dlz63cy8k5bysl6d20")))) (build-system python-build-system) (native-inputs `(("python2-setuptools" ,python2-setuptools) |