bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
cachetools,
|
|
decorator,
|
|
fetchFromGitHub,
|
|
pysmt,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pythonRelaxDepsHook,
|
|
setuptools,
|
|
z3-solver,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "claripy";
|
|
version = "9.2.107";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "angr";
|
|
repo = "claripy";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-89wh/SuwxOuORk3S42VA/cJh1GACFWB4ceUxp2OszQM=";
|
|
};
|
|
|
|
# z3 does not provide a dist-info, so python-runtime-deps-check will fail
|
|
pythonRemoveDeps = [ "z3-solver" ];
|
|
|
|
build-system = [
|
|
pythonRelaxDepsHook
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
cachetools
|
|
decorator
|
|
pysmt
|
|
z3-solver
|
|
] ++ z3-solver.requiredPythonModules;
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "claripy" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python abstraction layer for constraint solvers";
|
|
homepage = "https://github.com/angr/claripy";
|
|
license = with licenses; [ bsd2 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|