Merge pull request #312983 from r-ryantm/auto-update/apkleaks

apkleaks: 2.6.1 -> 2.6.2
This commit is contained in:
Fabian Affolter 2024-05-20 09:45:58 +02:00 committed by GitHub
commit 09874dd5c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,23 +1,25 @@
{ lib {
, fetchFromGitHub lib,
, jadx fetchFromGitHub,
, python3 jadx,
python3,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "apkleaks"; pname = "apkleaks";
version = "2.6.1"; version = "2.6.2";
pyproject = true;
disabled = python3.pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "dwisiswant0"; owner = "dwisiswant0";
repo = pname; repo = "apkleaks";
rev = "v${version}"; rev = "refs/tags/v${version}";
sha256 = "0ysciv643p8gkqw2wp7zy4n07hihdcyil8d20lj86cpgga71rd64"; hash = "sha256-a7zOowvhV9H91RwNDImN2+ecixY8g3WUotlBQVdmLgA=";
}; };
propagatedBuildInputs = with python3.pkgs; [ build-system = with python3.pkgs; [ setuptools ];
dependencies = with python3.pkgs; [
jadx jadx
pyaxmlparser pyaxmlparser
setuptools setuptools
@ -31,7 +33,8 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; { meta = with lib; {
description = "Scanning APK file for URIs, endpoints and secrets"; description = "Scanning APK file for URIs, endpoints and secrets";
homepage = "https://github.com/dwisiswant0/apkleaks"; homepage = "https://github.com/dwisiswant0/apkleaks";
license = with licenses; [ asl20 ]; changelog = "https://github.com/dwisiswant0/apkleaks/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "apkleaks"; mainProgram = "apkleaks";
}; };