{ lib, stdenv, buildPythonPackage, fetchFromGitHub, # build-system setuptools, setuptools-scm, # dependencies packaging, pexpect, python-daemon, pyyaml, pythonOlder, importlib-metadata, # tests ansible-core, glibcLocales, mock, openssh, pytest-mock, pytest-timeout, pytest-xdist, pytestCheckHook, versionCheckHook, }: buildPythonPackage rec { pname = "ansible-runner"; version = "2.4.0"; pyproject = true; src = fetchFromGitHub { owner = "ansible"; repo = "ansible-runner"; tag = version; hash = "sha256-lmaYTdJ7NlaCJ5/CVds6Xzwbe45QXbtS3h8gi5xqvUc="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace-fail '"setuptools>=45, <=69.0.2", "setuptools-scm[toml]>=6.2, <=8.0.4"' '"setuptools", "setuptools-scm"' ''; build-system = [ setuptools setuptools-scm ]; dependencies = [ packaging pexpect python-daemon pyyaml ] ++ lib.optionals (pythonOlder "3.10") [ importlib-metadata ]; nativeCheckInputs = [ ansible-core # required to place ansible CLI onto the PATH in tests glibcLocales mock openssh pytest-mock pytest-timeout pytest-xdist pytestCheckHook versionCheckHook ]; versionCheckProgramArg = "--version"; preCheck = '' export HOME=$(mktemp -d) export PATH="$PATH:$out/bin"; # avoid coverage flags rm pytest.ini ''; disabledTests = [ # Tests require network access "test_callback_plugin_task_args_leak" "test_env_accuracy" # Times out on slower hardware "test_large_stdout_blob" # Failed: DID NOT RAISE "test_validate_pattern" # Assertion error "test_callback_plugin_censoring_does_not_overwrite" "test_get_role_list" "test_include_role_from_collection_events" "test_module_level_no_log" "test_resolved_actions" ]; disabledTestPaths = [ # These tests unset PATH and then run executables like `bash` (see https://github.com/ansible/ansible-runner/pull/918) "test/integration/test_runner.py" "test/unit/test_runner.py" ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ # Integration tests on Darwin are not regularly passing in ansible-runner's own CI "test/integration" # These tests write to `/tmp` which is not writable on Darwin "test/unit/config/test__base.py" ]; pythonImportsCheck = [ "ansible_runner" ]; meta = { description = "Helps when interfacing with Ansible"; homepage = "https://github.com/ansible/ansible-runner"; changelog = "https://github.com/ansible/ansible-runner/releases/tag/${version}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ GaetanLepage ]; mainProgram = "ansible-runner"; }; }