python3Packages.plux: disable test incompatible with pytest 9

test_resolve_distribution_information fails with pytest >= 9.0.2 because
pytest now uses PEP 639 License-Expression metadata instead of the legacy
License field. Upstream pins pytest==8.4.1 in CI and has not encountered
this yet.

Upstream fix: https://github.com/localstack/plux/pull/46
This commit is contained in:
Alessio Caiazza
2026-04-02 12:54:39 +02:00
parent 8d8c1fa5b4
commit c284e4be6c
@@ -34,6 +34,13 @@ buildPythonPackage rec {
export HOME=$TMPDIR
'';
disabledTests = [
# Fails with pytest >= 9 which uses PEP 639 License-Expression metadata
# instead of legacy License field. Upstream pins pytest==8.4.1 in CI.
# https://github.com/localstack/plux/pull/46
"test_resolve_distribution_information"
];
pythonImportsCheck = [ "plugin.core" ];
meta = {