mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-17 15:09:26 +03:00
pypy.tests: disable broken test
This commit is contained in:
parent
81b65170bb
commit
233f899f64
1 changed files with 4 additions and 2 deletions
|
@ -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) (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue