Merge pull request #10501 from adnelson/fix_ansible
ansible: fix constants.py patching, do not propagate pythonpaths
This commit is contained in:
commit
47cb9d76d6
@ -11,7 +11,7 @@ pythonPackages.buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
prePatch = ''
|
prePatch = ''
|
||||||
sed -i "s,\/usr\/share\/ansible\/,$out/share/ansible," lib/ansible/constants.py
|
sed -i "s,/usr/,$out," lib/ansible/constants.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
@ -19,14 +19,10 @@ pythonPackages.buildPythonPackage rec {
|
|||||||
dontPatchELF = true;
|
dontPatchELF = true;
|
||||||
dontPatchShebangs = true;
|
dontPatchShebangs = true;
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [
|
pythonPath = with pythonPackages; [
|
||||||
paramiko jinja2 pyyaml httplib2 boto six
|
paramiko jinja2 pyyaml httplib2 boto six
|
||||||
] ++ stdenv.lib.optional windowsSupport pywinrm;
|
] ++ stdenv.lib.optional windowsSupport pywinrm;
|
||||||
|
|
||||||
postFixup = ''
|
|
||||||
wrapPythonProgramsIn $out/bin "$out $pythonPath"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://www.ansible.com";
|
homepage = "http://www.ansible.com";
|
||||||
description = "A simple automation tool";
|
description = "A simple automation tool";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user