ansible-later: relax python-json-logger

This commit is contained in:
Fabian Affolter
2025-03-15 13:07:10 +01:00
parent 5cd068d37b
commit b5371140da
+5 -5
View File
@@ -11,11 +11,13 @@ python3Packages.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "thegeeklab";
repo = pname;
repo = "ansible-later";
tag = "v${version}";
hash = "sha256-4ZHCnLeG5gr0UtKQLU+6xnTxUbxnLcmDd51Psnaa42I=";
};
pythonRelaxDeps = [ "python-json-logger" ];
build-system = with python3Packages; [
poetry-core
poetry-dynamic-versioning
@@ -43,9 +45,7 @@ python3Packages.buildPythonApplication rec {
pytestCheckHook
];
pythonImportsCheck = [
"ansiblelater"
];
pythonImportsCheck = [ "ansiblelater" ];
preCheck = ''
export HOME="$TMPDIR"
@@ -53,10 +53,10 @@ python3Packages.buildPythonApplication rec {
meta = {
description = "Best practice scanner for Ansible roles and playbooks";
mainProgram = "ansible-later";
homepage = "https://github.com/thegeeklab/ansible-later";
changelog = "https://github.com/thegeeklab/ansible-later/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tboerger ];
mainProgram = "ansible-later";
};
}