about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-05-20 08:11:24 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-05-20 08:11:24 +0200
commitc2440d2f0be3d534daadad99cb434d99a8850d29 (patch)
treef61372ce69ac23452a503e1f0783f01af5edac4a /pkgs/tools
parent25618a3ace3355d7643b744b27be723e726fbbcd (diff)
apkleaks: format with nixfmt
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/apkleaks/default.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/tools/security/apkleaks/default.nix b/pkgs/tools/security/apkleaks/default.nix
index 4cd5c926e5248..a8be3c4323c81 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";