{ lib , buildPythonPackage , cachetools , decorator , fetchFromGitHub , future , nose , pysmt , pythonOlder , pytestCheckHook , z3 }: buildPythonPackage rec { pname = "claripy"; version = "9.1.11752"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "angr"; repo = pname; rev = "v${version}"; sha256 = "sha256-Z50oKwS0MZVBEUeXfj9cgtPYXFAYf4i7QkgJiXdWrxo="; }; propagatedBuildInputs = [ cachetools decorator future pysmt z3 ]; checkInputs = [ nose pytestCheckHook ]; postPatch = '' # Use upstream z3 implementation substituteInPlace setup.py \ --replace "z3-solver>=4.8.5.0" "" ''; 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 ]; }; }