python3Packages.dataclasses-json: Disable failing test

The package doesn't pin a mypy version and is incompatible with ours.
This commit is contained in:
Martin Weinelt 2022-10-06 01:16:28 +02:00
parent 3c2e3c5686
commit 336c8f2a4c
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

@ -30,6 +30,12 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# mypy_main(None, text_io, text_io, [__file__], clean_exit=True)
# TypeError: main() takes at most 4 arguments (5 given)
"test_type_hints"
];
pythonImportsCheck = [ "dataclasses_json" ];
meta = with lib; {