Commit aad5efe5 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.angr: 9.2.148 -> 9.2.149

parent cbd33f59
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
  claripy,
  cle,
  cppheaderparser,
  cxxheaderparser,
  dpkt,
  fetchFromGitHub,
  gitpython,
@@ -33,12 +34,11 @@
  sympy,
  unicorn-angr,
  unique-log-filter,
  nix-update-script,
}:

buildPythonPackage rec {
  pname = "angr";
  version = "9.2.148";
  version = "9.2.149";
  pyproject = true;

  disabled = pythonOlder "3.11";
@@ -47,7 +47,7 @@ buildPythonPackage rec {
    owner = "angr";
    repo = "angr";
    tag = "v${version}";
    hash = "sha256-WObd/zpoRn4OQO1PWcuv/6odJ0qZnKW7uFx8Z0dUmv8=";
    hash = "sha256-j9Y0AkxiJSOxjztEFtT28Hftyih1Xsy2Aj0M+WSVAAg=";
  };

  pythonRelaxDeps = [ "capstone" ];
@@ -63,6 +63,7 @@ buildPythonPackage rec {
    claripy
    cle
    cppheaderparser
    cxxheaderparser
    dpkt
    gitpython
    itanium-demangler
@@ -105,12 +106,10 @@ buildPythonPackage rec {
    "archinfo"
  ];

  passthru.updateScript = nix-update-script { };

  meta = with lib; {
    description = "Powerful and user-friendly binary analysis platform";
    homepage = "https://angr.io/";
    license = with licenses; [ bsd2 ];
    license = licenses.bsd2;
    maintainers = with maintainers; [ fab ];
  };
}