Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pkgs/development/python-modules/mypy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@ buildPythonPackage rec {
"mypyc/test/test_commandline.py"
# fails to find hatchling
"mypy/test/testpep561.py"
# A change to the base64 decoder in CPython 3.13.13 and 3.14.4 causes this
# test to fail. At the time of writing, upstream skips the test.
# Upstream issue: https://github.com/python/mypy/issues/21120
# CPython issue: https://github.com/python/cpython/issues/145264
"mypyc/test/test_run.py::TestRun::run-base64.test::testAllBase64Features_librt_experimental"
]
++ lib.optionals stdenv.hostPlatform.isi686 [
# https://github.com/python/mypy/issues/15221
Expand Down
Loading