{ stdenv , fetchurl , pythonPackages , windowsSupport ? false }: pythonPackages.buildPythonPackage rec { pname = "ansible"; version = "2.5.1"; name = "${pname}-${version}"; src = fetchurl { url = "http://releases.ansible.com/ansible/${name}.tar.gz"; sha256 = "06h0cmz0cgj1xszzn6rsypfc8lkazgh5g1yxyss1yx242d0wkw2i"; }; prePatch = '' sed -i "s,/usr/,$out," lib/ansible/constants.py ''; doCheck = false; dontStrip = true; dontPatchELF = true; dontPatchShebangs = false; propagatedBuildInputs = with pythonPackages; [ pycrypto paramiko jinja2 pyyaml httplib2 boto six netaddr dnspython ] ++ stdenv.lib.optional windowsSupport pywinrm; meta = with stdenv.lib; { homepage = http://www.ansible.com; description = "A simple automation tool"; license = with licenses; [ gpl3 ]; maintainers = with maintainers; [ jgeerds joamaki ]; platforms = with platforms; linux ++ darwin; }; }