From b88b9a4700174359f2623f7e195ba372a68cd60b Mon Sep 17 00:00:00 2001 From: hulr <> Date: Thu, 23 Nov 2023 21:42:17 +0100 Subject: [PATCH] python3Packages.pytest-testinfra: 9.0.0 -> 10.0.0 --- .../python-modules/pytest-testinfra/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/pytest-testinfra/default.nix b/pkgs/development/python-modules/pytest-testinfra/default.nix index df1ae78c8612..3f2cbf8d874a 100644 --- a/pkgs/development/python-modules/pytest-testinfra/default.nix +++ b/pkgs/development/python-modules/pytest-testinfra/default.nix @@ -1,7 +1,7 @@ { lib , buildPythonPackage , fetchPypi -, pythonAtLeast +, pythonOlder , setuptools-scm , ansible-core , paramiko @@ -13,11 +13,11 @@ buildPythonPackage rec { pname = "pytest-testinfra"; - version = "9.0.0"; + version = "10.0.0"; src = fetchPypi { inherit pname version; - hash = "sha256-UxGzaeBUaSD85GTDv5RbVevnWhJ1aPbWFelLiJE0AUk="; + hash = "sha256-L7fQGFRYqbpmn/FNDdvsizkAxr3j+2+tmwlzdM5Kt30="; }; nativeBuildInputs = [ @@ -52,8 +52,8 @@ buildPythonPackage rec { "test_user_connection" "test_sudo" "test_docker_encoding" - ] ++ lib.optionals (pythonAtLeast "3.11") [ - # broken because salt package only built for python 3.10 + ] ++ lib.optionals (pythonOlder "3.11") [ + # broken because salt package only built for python 3.11 "test_backend_importables" ];