diff --git a/pkgs/development/python-modules/angrcli/default.nix b/pkgs/development/python-modules/angrcli/default.nix index 157e1e91341d..368ea4c9a27e 100644 --- a/pkgs/development/python-modules/angrcli/default.nix +++ b/pkgs/development/python-modules/angrcli/default.nix @@ -24,6 +24,11 @@ buildPythonPackage rec { hash = "sha256-a5ajUBQwt3xUNkeSOeGOAFf47wd4UVk+LcuAHGqbq4s="; }; + postPatch = '' + substituteInPlace tests/test_derefs.py \ + --replace "/bin/ls" "${coreutils}/bin/ls" + ''; + propagatedBuildInputs = [ angr cmd2 @@ -35,17 +40,18 @@ buildPythonPackage rec { pytestCheckHook ]; - postPatch = '' - substituteInPlace tests/test_derefs.py \ - --replace "/bin/ls" "${coreutils}/bin/ls" - ''; + disabledTests = lib.optionals (!stdenv.hostPlatform.isx86) [ + # expects the x86 register "rax" to exist + "test_cc" + "test_loop" + "test_max_depth" + ]; pythonImportsCheck = [ "angrcli" ]; meta = with lib; { - broken = (stdenv.isLinux && stdenv.isAarch64); description = "Python modules to allow easier interactive use of angr"; homepage = "https://github.com/fmagin/angr-cli"; license = with licenses; [ mit ];