python312Packages.sphinx: disable failing test

Was already reported upstream and will be fixed in the next minor release.
This commit is contained in:
Martin Weinelt 2024-04-14 20:10:29 +02:00
parent 107ae55341
commit 30823f3ea7
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, pythonAtLeast
, pythonOlder
, fetchFromGitHub
, isPyPy
@ -121,6 +122,9 @@ buildPythonPackage rec {
"test_isattributedescriptor"
"test_methoddescriptor"
"test_partialfunction"
] ++ lib.optionals (pythonAtLeast "3.12") [
# https://github.com/sphinx-doc/sphinx/issues/12202 (Fixed in 7.3)
"test_enum_class"
];
meta = {