python3Packages.frictionless: switch to pytest 9.0 (#544748)

This commit is contained in:
Pol Dellaiera
2026-07-23 04:43:17 +00:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
{
args@{
lib,
buildPythonPackage,
fetchFromGitHub,
@@ -56,12 +56,21 @@
pytest-mock,
pytest-timeout,
pytest-vcr,
pytestCheckHook,
pytest_9_0,
pytest9_0CheckHook,
requests-mock,
xlrd,
yattag,
}:
let
# With pytest 9.1 fails: AssertionError: assert not self._finalizers
pytestCheckHook = pytest9_0CheckHook;
pytest-lazy-fixtures = args.pytest-lazy-fixtures.override {
pytest = pytest_9_0;
pytestCheckHook = pytest9_0CheckHook;
};
in
buildPythonPackage (finalAttrs: {
pname = "frictionless";
version = "5.19.0";