Skip to content

Commit 0697f8a

Browse files
authored
python312Packages.ropgadget: 7.4 -> 7.5 (#346209)
2 parents 4a79b94 + 6830706 commit 0697f8a

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

pkgs/development/python-modules/ropgadget/default.nix

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,28 @@
22
lib,
33
buildPythonPackage,
44
fetchFromGitHub,
5+
setuptools,
56
capstone,
67
pythonOlder,
78
}:
89

910
buildPythonPackage rec {
1011
pname = "ropgadget";
11-
version = "7.4";
12-
format = "setuptools";
12+
version = "7.5";
13+
pyproject = true;
1314

1415
disabled = pythonOlder "3.7";
1516

1617
src = fetchFromGitHub {
1718
owner = "JonathanSalwan";
1819
repo = "ROPgadget";
1920
rev = "refs/tags/v${version}";
20-
hash = "sha256-6m8opcTM4vrK+VCPXxNhZttUq6YmS8swLUDhjyfinWE=";
21+
hash = "sha256-n7nVtR2HMAZeeSX/hNtDzmpEsnHbgDNO5gdzmPrgSuk=";
2122
};
2223

23-
propagatedBuildInputs = [ capstone ];
24+
build-system = [ setuptools ];
25+
26+
dependencies = [ capstone ];
2427

2528
# Test suite is working with binaries
2629
doCheck = false;

0 commit comments

Comments
 (0)