Merge pull request #122932 from mweinelt/ansible-lint

This commit is contained in:
Martin Weinelt 2021-05-14 21:01:29 +02:00 committed by GitHub
commit cc2fc35667
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 7 deletions

View File

@ -2,8 +2,8 @@
, buildPythonPackage
, isPy27
, fetchPypi
, python
, ansible
, setuptools-scm
, ansible-base
, enrich
, flaky
, pyyaml
@ -27,10 +27,12 @@ buildPythonPackage rec {
sha256 = "sha256-tnuWKEB66bwVuwu3H3mHG99ZP+/msGhMDMRL5fyQgD8=";
};
buildInputs = [ python ];
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
ansible
ansible-base
enrich
flaky
pyyaml
@ -65,7 +67,7 @@ buildPythonPackage rec {
preCheck = ''
# ansible wants to write to $HOME and crashes if it can't
export HOME=$(mktemp -d)
export PATH=$PATH:${lib.makeBinPath [ ansible ]}
export PATH=$PATH:${lib.makeBinPath [ ansible-base ]}
# create a working ansible-lint executable
export PATH=$PATH:$PWD/src/ansiblelint
@ -82,7 +84,7 @@ buildPythonPackage rec {
"test_prerun_reqs_v2"
];
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ansible ]}" ];
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ansible-base ]}" ];
meta = with lib; {
homepage = "https://github.com/ansible-community/ansible-lint";

View File

@ -70,7 +70,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Radically simple IT automation";
homepage = "Radically simple IT automation";
homepage = "http://www.ansible.com";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ hexa ];
};