about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorOTABI Tomoya <tomoya.otabi@gmail.com>2023-11-30 15:58:40 +0900
committerGitHub <noreply@github.com>2023-11-30 15:58:40 +0900
commit489e3d948a9020434d700a69ac16ac433ebe4996 (patch)
tree9f1c41088c75216d0c155046f58d3843538e7687 /pkgs
parentdb86472fa1da9844af7fab7c87ac1827b914d36a (diff)
parentf5ce0365ec19de3a3daac5cd061a556ed3575b8f (diff)
Merge pull request #270596 from NixOS/backport-269496-to-release-23.11
[Backport release-23.11] python3Packages.pytest-testinfra: 9.0.0 -> 10.0.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pytest-testinfra/default.nix10
1 files 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 df1ae78c8612b..3f2cbf8d874ae 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"
   ];