python313Packages.mypy: disable

mypy does not support python313 yet
This commit is contained in:
natsukium
2024-10-03 22:38:07 +09:00
parent 6d5e7f0425
commit b618f6bfb7
@@ -35,7 +35,9 @@ buildPythonPackage rec {
version = "1.10.1";
pyproject = true;
disabled = pythonOlder "3.8";
# mypy doesn't support python313 yet
# https://github.com/python/mypy/issues/17264
disabled = pythonOlder "3.8" || pythonAtLeast "3.13";
src = fetchFromGitHub {
owner = "python";