python3Packages.pytest-bdd: pin to pytest7

This package requires an update, which depends on the introduction of the
gherkin parser/compiler (https://github.com/cucumber/gherkin).

Changed files
+3 -2
pkgs
development
python-modules
pytest-bdd
+3 -2
pkgs/development/python-modules/pytest-bdd/default.nix
···
parse-type,
poetry-core,
pytest,
-
pytestCheckHook,
+
pytest7CheckHook,
pythonOlder,
typing-extensions,
}:
···
typing-extensions
];
-
nativeCheckInputs = [ pytestCheckHook ];
+
# requires an update for pytest 8.4 compat
+
nativeCheckInputs = [ pytest7CheckHook ];
preCheck = ''
export PATH=$PATH:$out/bin