about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ansible
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-02-11 13:26:17 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-02-11 14:14:07 +0100
commit8ea925b2404ac7b4d22ea3a3ec69241b757e7fb2 (patch)
treefb88a05353479b88c85f04815f139c005e061fcf /pkgs/development/python-modules/ansible
parent8bfce240457124eef57edab73faaea7c059ad722 (diff)
downloadnixlib-8ea925b2404ac7b4d22ea3a3ec69241b757e7fb2.tar
nixlib-8ea925b2404ac7b4d22ea3a3ec69241b757e7fb2.tar.gz
nixlib-8ea925b2404ac7b4d22ea3a3ec69241b757e7fb2.tar.bz2
nixlib-8ea925b2404ac7b4d22ea3a3ec69241b757e7fb2.tar.lz
nixlib-8ea925b2404ac7b4d22ea3a3ec69241b757e7fb2.tar.xz
nixlib-8ea925b2404ac7b4d22ea3a3ec69241b757e7fb2.tar.zst
nixlib-8ea925b2404ac7b4d22ea3a3ec69241b757e7fb2.zip
ansible_2_1: windowsSupport off by default
Diffstat (limited to 'pkgs/development/python-modules/ansible')
-rw-r--r--pkgs/development/python-modules/ansible/2.1.nix4
1 files 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 5af0837387d4..077bfa198aaf 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;