apkleaks: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-20 08:11:24 +02:00
parent 25618a3ace
commit c2440d2f0b

View File

@ -1,7 +1,8 @@
{ lib {
, fetchFromGitHub lib,
, jadx fetchFromGitHub,
, python3 jadx,
python3,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
@ -16,9 +17,7 @@ python3.pkgs.buildPythonApplication rec {
hash = "sha256-a7zOowvhV9H91RwNDImN2+ecixY8g3WUotlBQVdmLgA="; hash = "sha256-a7zOowvhV9H91RwNDImN2+ecixY8g3WUotlBQVdmLgA=";
}; };
build-system = with python3.pkgs; [ build-system = with python3.pkgs; [ setuptools ];
setuptools
];
dependencies = with python3.pkgs; [ dependencies = with python3.pkgs; [
jadx jadx
@ -29,9 +28,7 @@ python3.pkgs.buildPythonApplication rec {
# Project has no tests # Project has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "apkleaks" ];
"apkleaks"
];
meta = with lib; { meta = with lib; {
description = "Scanning APK file for URIs, endpoints and secrets"; description = "Scanning APK file for URIs, endpoints and secrets";