python310Packages.angrop: relax angr constraint

main
Fabian Affolter 2 years ago
parent a5aa9785e3
commit 93c256b94d
  1. 9
      pkgs/development/python-modules/angrop/default.nix

@ -4,6 +4,7 @@
, fetchFromGitHub
, progressbar
, pythonOlder
, pythonRelaxDepsHook
, tqdm
}:
@ -21,12 +22,20 @@ buildPythonPackage rec {
hash = "sha256-qaDAicmYZxLPTl17il61ij01prRv2H4xxe07Xg4KWhI=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
];
propagatedBuildInputs = [
angr
progressbar
tqdm
];
pythonRelaxDeps = [
"angr"
];
# Tests have additional requirements, e.g., angr binaries
# cle is executing the tests with the angr binaries already and is a requirement of angr
doCheck = false;

Loading…
Cancel
Save