From be43b08631f6bf6f20c75cf365d7fc220ed3c675 Mon Sep 17 00:00:00 2001 From: Wroclaw Date: Sat, 7 Mar 2026 12:37:05 +0100 Subject: [PATCH] python3Packages.ndeflib: fix tests failures --- pkgs/development/python-modules/ndeflib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ndeflib/default.nix b/pkgs/development/python-modules/ndeflib/default.nix index a75308a4d660..eaa769545b1c 100644 --- a/pkgs/development/python-modules/ndeflib/default.nix +++ b/pkgs/development/python-modules/ndeflib/default.nix @@ -2,7 +2,7 @@ lib, buildPythonPackage, fetchFromGitHub, - pytestCheckHook, + pytest8_3CheckHook, pythonAtLeast, setuptools, }: @@ -21,7 +21,7 @@ buildPythonPackage rec { nativeBuildInputs = [ setuptools ]; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ pytest8_3CheckHook ]; pythonImportsCheck = [ "ndef" ];