From 8ea925b2404ac7b4d22ea3a3ec69241b757e7fb2 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 11 Feb 2017 13:26:17 +0100 Subject: [PATCH] ansible_2_1: windowsSupport off by default --- pkgs/development/python-modules/ansible/2.1.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ansible/2.1.nix b/pkgs/development/python-modules/ansible/2.1.nix index 5af0837387d..077bfa198aa 100644 --- a/pkgs/development/python-modules/ansible/2.1.nix +++ b/pkgs/development/python-modules/ansible/2.1.nix @@ -10,7 +10,8 @@ , six , netaddr , dns -, pywinrm +, windowsSupport ? false +, pywinrm ? null }: let @@ -43,7 +44,6 @@ in buildPythonPackage rec { dontStrip = true; dontPatchELF = true; dontPatchShebangs = false; - windowsSupport = true; propagatedBuildInputs = [ pycrypto paramiko jinja pyyaml httplib2 boto six netaddr dns ] ++ lib.optional windowsSupport pywinrm;