From c2440d2f0be3d534daadad99cb434d99a8850d29 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 20 May 2024 08:11:24 +0200 Subject: [PATCH] apkleaks: format with nixfmt --- pkgs/tools/security/apkleaks/default.nix | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/security/apkleaks/default.nix b/pkgs/tools/security/apkleaks/default.nix index 4cd5c926e524..a8be3c4323c8 100644 --- a/pkgs/tools/security/apkleaks/default.nix +++ b/pkgs/tools/security/apkleaks/default.nix @@ -1,7 +1,8 @@ -{ lib -, fetchFromGitHub -, jadx -, python3 +{ + lib, + fetchFromGitHub, + jadx, + python3, }: python3.pkgs.buildPythonApplication rec { @@ -16,9 +17,7 @@ python3.pkgs.buildPythonApplication rec { hash = "sha256-a7zOowvhV9H91RwNDImN2+ecixY8g3WUotlBQVdmLgA="; }; - build-system = with python3.pkgs; [ - setuptools - ]; + build-system = with python3.pkgs; [ setuptools ]; dependencies = with python3.pkgs; [ jadx @@ -29,9 +28,7 @@ python3.pkgs.buildPythonApplication rec { # Project has no tests doCheck = false; - pythonImportsCheck = [ - "apkleaks" - ]; + pythonImportsCheck = [ "apkleaks" ]; meta = with lib; { description = "Scanning APK file for URIs, endpoints and secrets";