Commit c2440d2f authored by Fabian Affolter's avatar Fabian Affolter
Browse files

apkleaks: format with nixfmt

parent 25618a3a
Loading
Loading
Loading
Loading
+7 −10
Original line number Diff line number Diff line
{ 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";