Files
nixpkgs/pkgs/development/python-modules/angr/default.nix
T
Martin Weinelt b79da2786f Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
	pkgs/development/python-modules/bundlewrap/default.nix
	pkgs/development/python-modules/coverage/default.nix
	pkgs/development/python-modules/h5netcdf/default.nix
	pkgs/development/python-modules/hypothesis/default.nix
	pkgs/development/python-modules/numba/default.nix
	pkgs/development/python-modules/optype/default.nix
	pkgs/development/python-modules/setuptools-git-versioning/default.nix
	pkgs/development/python-modules/sphinx/default.nix
2026-02-15 16:17:41 +01:00

113 lines
1.8 KiB
Nix

{
lib,
stdenv,
ailment,
archinfo,
buildPythonPackage,
cachetools,
capstone,
cffi,
claripy,
cle,
cppheaderparser,
cxxheaderparser,
dpkt,
fetchFromGitHub,
gitpython,
itanium-demangler,
mulpyplexer,
nampa,
networkx,
progressbar2,
protobuf,
psutil,
pycparser,
pyformlang,
pydemumble,
pyvex,
rich,
rpyc,
setuptools,
sortedcontainers,
sqlalchemy,
sympy,
unicorn-angr,
unique-log-filter,
}:
buildPythonPackage rec {
pname = "angr";
version = "9.2.193";
pyproject = true;
src = fetchFromGitHub {
owner = "angr";
repo = "angr";
tag = "v${version}";
hash = "sha256-7wBfxHWD5FRin8pfKup4izJBQzFN5N5dQZqIto5y83k=";
};
pythonRelaxDeps = [ "capstone" ];
build-system = [ setuptools ];
dependencies = [
ailment
archinfo
cachetools
capstone
cffi
claripy
cle
cppheaderparser
cxxheaderparser
dpkt
gitpython
itanium-demangler
mulpyplexer
nampa
networkx
progressbar2
protobuf
psutil
pycparser
pyformlang
pydemumble
pyvex
rich
rpyc
sortedcontainers
sympy
unique-log-filter
];
optional-dependencies = {
angrdb = [ sqlalchemy ];
unicorn = [ unicorn-angr ];
};
setupPyBuildFlags = lib.optionals stdenv.hostPlatform.isLinux [
"--plat-name"
"linux"
];
# Tests have additional requirements, e.g., pypcode and angr binaries
# cle is executing the tests with the angr binaries
doCheck = false;
pythonImportsCheck = [
"angr"
"claripy"
"cle"
"pyvex"
"archinfo"
];
meta = {
description = "Powerful and user-friendly binary analysis platform";
homepage = "https://angr.io/";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ fab ];
};
}