pypy.tests: disable broken test

This commit is contained in:
FliegendeWurst 2025-04-08 09:28:01 +02:00
parent 81b65170bb
commit 233f899f64

View file

@ -237,7 +237,8 @@ let
} }
); );
condaTests = # depends on mypy, which depends on CPython internals
condaTests = lib.optionalAttrs (!python.isPyPy) (
let let
requests = callPackage ( requests = callPackage (
{ {
@ -276,7 +277,8 @@ let
condaExamplePackage = runCommand "import-requests" { } '' condaExamplePackage = runCommand "import-requests" { } ''
${pythonWithRequests.interpreter} -c "import requests" > $out ${pythonWithRequests.interpreter} -c "import requests" > $out
''; '';
}; }
);
in in
lib.optionalAttrs (stdenv.hostPlatform == stdenv.buildPlatform) ( lib.optionalAttrs (stdenv.hostPlatform == stdenv.buildPlatform) (