python3Packages.paramterized: disable tests with pytest 8.4

They are broken and the package is likely abandonware.

Changed files
+3
pkgs
development
python-modules
parameterized
+3
pkgs/development/python-modules/parameterized/default.nix
···
nativeBuildInputs = [ setuptools ];
checkInputs = [
mock
pytestCheckHook
···
nativeBuildInputs = [ setuptools ];
+
# 'yield' keyword is allowed in fixtures, but not in tests (test_naked_function)
+
doCheck = false;
+
checkInputs = [
mock
pytestCheckHook