python3Packages.angr: 9.0.8761 -> 9.0.9031
This commit is contained in:
parent
9c1c556dcf
commit
8a80d96506
1 changed files with 11 additions and 3 deletions
|
@ -13,6 +13,7 @@
|
|||
, GitPython
|
||||
, itanium_demangler
|
||||
, mulpyplexer
|
||||
, nampa
|
||||
, networkx
|
||||
, progressbar2
|
||||
, protobuf
|
||||
|
@ -42,14 +43,14 @@ in
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "angr";
|
||||
version = "9.0.8761";
|
||||
version = "9.0.9031";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-vPqCezHYJP3ue3/J/Pni9jPvSJ+om7nAVgPTU6z5xBE=";
|
||||
sha256 = "sha256-qWAz9SHfQU0cdk4yVekJn5OIDPJPbi63CDdlHDq1Opw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -65,6 +66,7 @@ buildPythonPackage rec {
|
|||
GitPython
|
||||
itanium_demangler
|
||||
mulpyplexer
|
||||
nampa
|
||||
networkx
|
||||
progressbar2
|
||||
protobuf
|
||||
|
@ -83,7 +85,13 @@ buildPythonPackage rec {
|
|||
doCheck = false;
|
||||
|
||||
# See http://angr.io/api-doc/
|
||||
pythonImportsCheck = [ "angr" "claripy" "cle" "pyvex" "archinfo" ];
|
||||
pythonImportsCheck = [
|
||||
"angr"
|
||||
"claripy"
|
||||
"cle"
|
||||
"pyvex"
|
||||
"archinfo"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Powerful and user-friendly binary analysis platform";
|
||||
|
|
Loading…
Reference in a new issue