python312Packages.ndeflib: disable failing test on Python 3.12

This commit is contained in:
Fabian Affolter 2024-01-23 15:46:15 +01:00
parent a34b0b9d86
commit 53e16cd7f8

View File

@ -36,6 +36,8 @@ buildPythonPackage rec {
disabledTests = [
# AssertionError caused due to wrong size
"test_decode_error"
] ++ lib.optionals (pythonAtLeast "3.12") [
"test_encode_error"
];
meta = with lib; {