Merge pull request #15766 from elasticdog/ansible2

ansible2: 2.0.0.2 -> 2.1.0.0
This commit is contained in:
Frederik Rietdijk 2016-05-28 10:23:39 +02:00
commit de070bbe1c

View file

@ -799,6 +799,7 @@ in modules // {
ansible = buildPythonPackage rec {
version = "1.9.4";
name = "ansible-${version}";
disabled = isPy3k;
src = pkgs.fetchurl {
url = "https://releases.ansible.com/ansible/${name}.tar.gz";
@ -829,12 +830,13 @@ in modules // {
};
ansible2 = buildPythonPackage rec {
version = "v2.0.0.2";
name = "ansible-${version}";
version = "2.1.0.0";
name = "ansible-${version}";
disabled = isPy3k;
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 = ''
@ -848,15 +850,15 @@ in modules // {
windowsSupport = true;
propagatedBuildInputs = with self; [
paramiko jinja2 pyyaml httplib2 boto six
paramiko jinja2 pyyaml httplib2 boto six readline
] ++ 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;
};
};