about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-11-03 09:27:16 +0100
committerGitHub <noreply@github.com>2022-11-03 09:27:16 +0100
commit40deff2a5bbef0f730c876fec23a10cc7c27aaad (patch)
treea4546aaf9140e3c6a836b0831bcf6a3827dde4c7 /pkgs/development
parentde97a3c324d74bd9ffec865c9b5cea1615a96140 (diff)
python310Packages.ansible-runner: disable on older Python releases
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/ansible-runner/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/ansible-runner/default.nix b/pkgs/development/python-modules/ansible-runner/default.nix
index a94534ef68c3a..614bbe28a21c8 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=";