From 78fa8245ea2a34ecfbeb4f5dcf0054a98c0e8bbd Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 22 Jun 2024 22:35:12 +0200 Subject: [PATCH] python312Packages.beautysh: pin pytest7 Due to API changes in pytest 8.2.0. --- pkgs/development/python-modules/beautysh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/beautysh/default.nix b/pkgs/development/python-modules/beautysh/default.nix index 79cda3b5eec6..8c8af617f833 100644 --- a/pkgs/development/python-modules/beautysh/default.nix +++ b/pkgs/development/python-modules/beautysh/default.nix @@ -5,7 +5,7 @@ fetchFromGitHub, fetchpatch, poetry-core, - pytestCheckHook, + pytest7CheckHook, setuptools, types-colorama, types-setuptools, @@ -46,7 +46,7 @@ buildPythonPackage rec { types-setuptools ]; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ pytest7CheckHook ]; pythonImportsCheck = [ "beautysh" ];