python310Packages.angrop: relax angr constraint

This commit is contained in:
Fabian Affolter 2022-06-23 11:39:10 +02:00
parent a5aa9785e3
commit 93c256b94d

View file

@ -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;