ansible: disable python 3 support
Python 3 is not supported by Ansible upstream, and trying to run `nox-review` will not succeed if we don't explicitly disable it.
This commit is contained in:
parent
bda2d99e91
commit
f669509e05
1 changed files with 2 additions and 0 deletions
|
@ -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";
|
||||
|
@ -831,6 +832,7 @@ in modules // {
|
|||
ansible2 = buildPythonPackage rec {
|
||||
version = "2.1.0.0";
|
||||
name = "ansible-${version}";
|
||||
disabled = isPy3k;
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "http://releases.ansible.com/ansible/${name}.tar.gz";
|
||||
|
|
Loading…
Reference in a new issue