lol

python311Packages.angrop: format with nixfmt

+11 -14
+11 -14
pkgs/development/python-modules/angrop/default.nix
··· 1 - { lib 2 - , angr 3 - , buildPythonPackage 4 - , fetchFromGitHub 5 - , progressbar 6 - , pythonOlder 7 - , setuptools 8 - , tqdm 1 + { 2 + lib, 3 + angr, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + progressbar, 7 + pythonOlder, 8 + setuptools, 9 + tqdm, 9 10 }: 10 11 11 12 buildPythonPackage rec { ··· 22 23 hash = "sha256-T07Y23UDp9eL2DK5gakV8kPNGsXf+4EofZJDSW/JS1Q="; 23 24 }; 24 25 25 - build-system = [ 26 - setuptools 27 - ]; 26 + build-system = [ setuptools ]; 28 27 29 28 dependencies = [ 30 29 angr ··· 36 35 # cle is executing the tests with the angr binaries already and is a requirement of angr 37 36 doCheck = false; 38 37 39 - pythonImportsCheck = [ 40 - "angrop" 41 - ]; 38 + pythonImportsCheck = [ "angrop" ]; 42 39 43 40 meta = with lib; { 44 41 description = "ROP gadget finder and chain builder";