15 buildPythonPackage rec {
20 disabled = pythonOlder "3.11";
22 src = fetchFromGitHub {
25 rev = "refs/tags/v${version}";
26 hash = "sha256-WtT4jdL512ad/hUb8uMxAqihDH/YFxsnYumNFWWGkQM=";
29 # z3 does not provide a dist-info, so python-runtime-deps-check will fail
30 pythonRemoveDeps = [ "z3-solver" ];
42 ] ++ z3-solver.requiredPythonModules;
44 nativeCheckInputs = [ pytestCheckHook ];
46 pythonImportsCheck = [ "claripy" ];
49 description = "Python abstraction layer for constraint solvers";
50 homepage = "https://github.com/angr/claripy";
51 license = with licenses; [ bsd2 ];
52 maintainers = with maintainers; [ fab ];