From de97a3c324d74bd9ffec865c9b5cea1615a96140 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 2 Nov 2022 23:14:03 +0000 Subject: [PATCH 1/2] python310Packages.ansible-runner: 2.2.1 -> 2.3.0 --- pkgs/development/python-modules/ansible-runner/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ansible-runner/default.nix b/pkgs/development/python-modules/ansible-runner/default.nix index 14dfb65cfea8..a94534ef68c3 100644 --- a/pkgs/development/python-modules/ansible-runner/default.nix +++ b/pkgs/development/python-modules/ansible-runner/default.nix @@ -19,12 +19,12 @@ buildPythonPackage rec { pname = "ansible-runner"; - version = "2.2.1"; + version = "2.3.0"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-zZtssRdAEbTi4KWZPU0E2SjN5f4iqJk67UQ4STOHwYI="; + hash = "sha256-mcTfu+reRGOXvRqeC/BQhz2KBrWSbVXSQIWyld2/Ecs="; }; nativeBuildInputs = [ From 40deff2a5bbef0f730c876fec23a10cc7c27aaad Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 3 Nov 2022 09:27:16 +0100 Subject: [PATCH 2/2] python310Packages.ansible-runner: disable on older Python releases --- pkgs/development/python-modules/ansible-runner/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/ansible-runner/default.nix b/pkgs/development/python-modules/ansible-runner/default.nix index a94534ef68c3..614bbe28a21c 100644 --- a/pkgs/development/python-modules/ansible-runner/default.nix +++ b/pkgs/development/python-modules/ansible-runner/default.nix @@ -12,6 +12,7 @@ , pytest-timeout , pytest-xdist , pytestCheckHook +, pythonOlder , python-daemon , pyyaml , six @@ -22,6 +23,8 @@ buildPythonPackage rec { version = "2.3.0"; format = "setuptools"; + disabled = pythonOlder "3.7"; + src = fetchPypi { inherit pname version; hash = "sha256-mcTfu+reRGOXvRqeC/BQhz2KBrWSbVXSQIWyld2/Ecs=";