9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
17 owner = "JonathanSalwan";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-6m8opcTM4vrK+VCPXxNhZttUq6YmS8swLUDhjyfinWE=";
23 propagatedBuildInputs = [ capstone ];
25 # Test suite is working with binaries
28 pythonImportsCheck = [ "ropgadget" ];
31 description = "Tool to search for gadgets in binaries to facilitate ROP exploitation";
32 mainProgram = "ROPgadget";
33 homepage = "http://shell-storm.org/project/ROPgadget/";
34 license = licenses.bsd3;
35 maintainers = with maintainers; [ bennofs ];