python311Packages.angrop: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-09 23:17:11 +02:00
parent 2dd22d5265
commit d037ae232e

View File

@ -1,11 +1,12 @@
{ lib {
, angr lib,
, buildPythonPackage angr,
, fetchFromGitHub buildPythonPackage,
, progressbar fetchFromGitHub,
, pythonOlder progressbar,
, setuptools pythonOlder,
, tqdm setuptools,
tqdm,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -22,9 +23,7 @@ buildPythonPackage rec {
hash = "sha256-T07Y23UDp9eL2DK5gakV8kPNGsXf+4EofZJDSW/JS1Q="; hash = "sha256-T07Y23UDp9eL2DK5gakV8kPNGsXf+4EofZJDSW/JS1Q=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
angr angr
@ -36,9 +35,7 @@ buildPythonPackage rec {
# cle is executing the tests with the angr binaries already and is a requirement of angr # cle is executing the tests with the angr binaries already and is a requirement of angr
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "angrop" ];
"angrop"
];
meta = with lib; { meta = with lib; {
description = "ROP gadget finder and chain builder"; description = "ROP gadget finder and chain builder";