python3Packages.ansible-runner: use ansible-core

This commit is contained in:
Martin Weinelt 2022-04-26 11:27:47 +02:00
parent 813330fa92
commit 19b2755900
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,6 +1,6 @@
{ lib
, stdenv
, ansible
, ansible-core
, buildPythonPackage
, fetchPypi
, mock
@ -32,7 +32,7 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
ansible
ansible-core
psutil
pexpect
python-daemon
@ -41,7 +41,7 @@ buildPythonPackage rec {
];
checkInputs = [
ansible # required to place ansible CLI onto the PATH in tests
ansible-core # required to place ansible CLI onto the PATH in tests
pytestCheckHook
pytest-mock
pytest-timeout