python310Packages.loguru: remove mypy linter

This commit is contained in:
Sandro Jäckel
2023-06-16 08:52:27 +02:00
committed by Gaetan Lepage
parent 27c96be040
commit 8801bbd608
@@ -3,10 +3,8 @@
, aiocontextvars
, buildPythonPackage
, colorama
, fetchpatch
, fetchFromGitHub
, freezegun
, mypy
, pytestCheckHook
, pythonOlder
}:
@@ -35,10 +33,11 @@ buildPythonPackage rec {
pytestCheckHook
colorama
freezegun
mypy
];
disabledTestPaths = lib.optionals stdenv.isDarwin [
disabledTestPaths = [
"tests/test_type_hinting.py" # avoid dependency on mypy
] ++ lib.optionals stdenv.isDarwin [
"tests/test_multiprocessing.py"
];