From bda2d99e912cf6c25748703e2336a4454940da19 Mon Sep 17 00:00:00 2001 From: Aaron Bull Schaefer Date: Fri, 27 May 2016 14:26:56 -0700 Subject: [PATCH] ansible2: 2.0.0.2 -> 2.1.0.0 --- pkgs/top-level/python-packages.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e575fcba2cbe..f7766ae41e91 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -829,12 +829,12 @@ in modules // { }; ansible2 = buildPythonPackage rec { - version = "v2.0.0.2"; - name = "ansible-${version}"; + version = "2.1.0.0"; + name = "ansible-${version}"; src = pkgs.fetchurl { - url = "http://releases.ansible.com/ansible/ansible-2.0.0.2.tar.gz"; - sha256 = "0a2qgshbpbg2c8rz36jcc5f7zam0j1viqdhc8fqqbarz26chpnr7"; + url = "http://releases.ansible.com/ansible/${name}.tar.gz"; + sha256 = "1bfc2xiplpad6f2nwi48y0kps7xqnsll85dlz63cy8k5bysl6d20"; }; prePatch = '' @@ -852,11 +852,11 @@ in modules // { ] ++ optional windowsSupport pywinrm; meta = with stdenv.lib; { - homepage = "http://www.ansible.com"; + homepage = "http://www.ansible.com"; description = "A simple automation tool"; - license = with licenses; [ gpl3 ]; + license = with licenses; [ gpl3 ]; maintainers = with maintainers; [ copumpkin ]; - platforms = with platforms; linux ++ darwin; + platforms = with platforms; linux ++ darwin; }; };