python312Packages.mypy: skip failing test
This commit is contained in:
parent
97dcead263
commit
820b56f17d
1 changed files with 6 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonAtLeast
|
||||
, pythonOlder
|
||||
|
||||
# build-system
|
||||
|
@ -100,6 +101,11 @@ buildPythonPackage rec {
|
|||
tomli
|
||||
] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);
|
||||
|
||||
disabledTests = lib.optionals (pythonAtLeast "3.12") [
|
||||
# requires distutils
|
||||
"test_c_unit_test"
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# fails to find tyoing_extensions
|
||||
"mypy/test/testcmdline.py"
|
||||
|
|
Loading…
Reference in a new issue