about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ansible-runner
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-04-26 11:27:47 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-04-26 11:27:47 +0200
commit19b2755900038866fe20888e4503573059816136 (patch)
treede6402bb0aa110c66d79f56c0e0a97778ea56078 /pkgs/development/python-modules/ansible-runner
parent813330fa92cd8a9e5c8b38fd9f2d020334566e24 (diff)
python3Packages.ansible-runner: use ansible-core
Diffstat (limited to 'pkgs/development/python-modules/ansible-runner')
-rw-r--r--pkgs/development/python-modules/ansible-runner/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/ansible-runner/default.nix b/pkgs/development/python-modules/ansible-runner/default.nix
index 706cde06b8b1b..ded3205f47b6d 100644
--- a/pkgs/development/python-modules/ansible-runner/default.nix
+++ b/pkgs/development/python-modules/ansible-runner/default.nix
@@ -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