reptyr: disable tests

Both use and testing require ptrace of non-child processes

Fixes: #292299
This commit is contained in:
Michael Raskin 2024-02-29 15:35:25 +01:00
parent 51363e5c0d
commit 9daae56550

View File

@ -17,7 +17,9 @@ in stdenv.mkDerivation rec {
nativeCheckInputs = [ python ]; nativeCheckInputs = [ python ];
doCheck = true; # reptyr needs to do ptrace of a non-child process
# It can be neither used nor tested if the kernel is not told to allow this
doCheck = false;
checkFlags = [ checkFlags = [
"PYTHON_CMD=${python.interpreter}" "PYTHON_CMD=${python.interpreter}"