From 1ba17987f7bb1439791af8cf2b2d373ca00d8e09 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 11 Feb 2017 13:26:52 +0100 Subject: [PATCH] ansible_2_2: windows support off by default this was accidentally enabled when moving the expression. --- pkgs/development/python-modules/ansible/2.2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ansible/2.2.nix b/pkgs/development/python-modules/ansible/2.2.nix index 48a325fec331..d62c1e74822d 100644 --- a/pkgs/development/python-modules/ansible/2.2.nix +++ b/pkgs/development/python-modules/ansible/2.2.nix @@ -10,7 +10,8 @@ , six , netaddr , dns -, pywinrm +, windowsSupport ? false +, pywinrm ? null }: let @@ -44,7 +45,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;