about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-04-24 21:57:02 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-04-24 15:27:42 -0700
commitd9b11e53b1e30d3d64a96a4156dd67df5c571881 (patch)
tree58ffd0484c77cd33c5f3cd0462ff10a6d1d59c54
parentd84bf71b6240fd69402846a81cbd62f924cf5b12 (diff)
python3Packages.angr: extend pythonImportsCheck
-rw-r--r--pkgs/development/python-modules/angr/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/angr/default.nix b/pkgs/development/python-modules/angr/default.nix
index b67c3524fae8a..588e647647d17 100644
--- a/pkgs/development/python-modules/angr/default.nix
+++ b/pkgs/development/python-modules/angr/default.nix
@@ -81,7 +81,9 @@ buildPythonPackage rec {
   # Tests have additional requirements, e.g., pypcode and angr binaries
   # cle is executing the tests with the angr binaries
   doCheck = false;
-  pythonImportsCheck = [ "angr" ];
+
+  # See http://angr.io/api-doc/
+  pythonImportsCheck = [ "angr" "claripy" "cle" "pyvex" "archinfo" ];
 
   meta = with lib; {
     description = "Powerful and user-friendly binary analysis platform";