biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / ropgadget / default.nix
blob53908cb4db73060faea6e3e8504a33c77597aae2
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   capstone,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "ropgadget";
11   version = "7.4";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "JonathanSalwan";
18     repo = "ROPgadget";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-6m8opcTM4vrK+VCPXxNhZttUq6YmS8swLUDhjyfinWE=";
21   };
23   propagatedBuildInputs = [ capstone ];
25   # Test suite is working with binaries
26   doCheck = false;
28   pythonImportsCheck = [ "ropgadget" ];
30   meta = with lib; {
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 ];
36   };