python3Packages.angr: extend pythonImportsCheck

This commit is contained in:
Robert Schütz 2021-04-24 21:57:02 +02:00 committed by Jonathan Ringer
parent d84bf71b62
commit d9b11e53b1
1 changed files with 3 additions and 1 deletions

View File

@ -81,7 +81,9 @@ buildPythonPackage rec {
# Tests have additional requirements, e.g., pypcode and angr binaries # Tests have additional requirements, e.g., pypcode and angr binaries
# cle is executing the tests with the angr binaries # cle is executing the tests with the angr binaries
doCheck = false; doCheck = false;
pythonImportsCheck = [ "angr" ];
# See http://angr.io/api-doc/
pythonImportsCheck = [ "angr" "claripy" "cle" "pyvex" "archinfo" ];
meta = with lib; { meta = with lib; {
description = "Powerful and user-friendly binary analysis platform"; description = "Powerful and user-friendly binary analysis platform";