54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
|
{ lib
|
||
|
, fetchurl
|
||
|
, buildPythonPackage
|
||
|
, pycrypto
|
||
|
, paramiko
|
||
|
, jinja2
|
||
|
, pyyaml
|
||
|
, httplib2
|
||
|
, boto
|
||
|
, six
|
||
|
, netaddr
|
||
|
, dnspython
|
||
|
, jmespath
|
||
|
, dopy
|
||
|
, windowsSupport ? false
|
||
|
, pywinrm
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "ansible";
|
||
|
version = "2.7.8";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://releases.ansible.com/ansible/${pname}-${version}.tar.gz";
|
||
|
sha256 = "11yx7vd0mp5gkq428af141dwnrwf8f9cp3f65243qbs9icjxnrrx";
|
||
|
};
|
||
|
|
||
|
prePatch = ''
|
||
|
sed -i "s,/usr/,$out," lib/ansible/constants.py
|
||
|
'';
|
||
|
|
||
|
postInstall = ''
|
||
|
for m in docs/man/man1/*; do
|
||
|
install -vD $m -t $out/share/man/man1
|
||
|
done
|
||
|
'';
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
pycrypto paramiko jinja2 pyyaml httplib2 boto
|
||
|
six netaddr dnspython jmespath dopy
|
||
|
] ++ lib.optional windowsSupport pywinrm;
|
||
|
|
||
|
# dificult to test
|
||
|
doCheck = false;
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = http://www.ansible.com;
|
||
|
description = "Radically simple IT automation";
|
||
|
license = [ licenses.gpl3 ] ;
|
||
|
maintainers = with maintainers; [ jgeerds joamaki costrouc ];
|
||
|
platforms = platforms.linux ++ platforms.darwin;
|
||
|
};
|
||
|
}
|