Skip to content

Commit

Permalink
Merge pull request #15766 from elasticdog/ansible2
Browse files Browse the repository at this point in the history
ansible2: 2.0.0.2 -> 2.1.0.0
  • Loading branch information
FRidh committed May 28, 2016
2 parents 7eb9932 + 980805c commit de070bb
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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 = ''
Expand All @@ -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;
};
};

Expand Down

0 comments on commit de070bb

Please sign in to comment.