Unverified Commit 1524001c authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

trueseeing: 2.2.2 -> 2.2.4, `with lib;` cleanup, RFC format (#354019)

parents 4bb37b89 8710b81a
Loading
Loading
Loading
Loading
+11 −9
Original line number Diff line number Diff line
{ lib
, fetchFromGitHub
, python3
{
  lib,
  fetchFromGitHub,
  python3,
}:

python3.pkgs.buildPythonApplication rec {
  pname = "trueseeing";
  version = "2.2.2";
  version = "2.2.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "alterakey";
    repo = "trueseeing";
    rev = "refs/tags/v${version}";
    hash = "sha256-5IHJXlpHZJFKj7rdmRsWA5FXZFJf3usGsLgXx1cYEmU=";
    hash = "sha256-2KELqHa6lw9wdJBaC90vTZSjD7tfkr3K6yDNhqBQrR0=";
  };

  build-system = with python3.pkgs; [
@@ -24,12 +25,13 @@ python3.pkgs.buildPythonApplication rec {
  dependencies = with python3.pkgs; [
    aiohttp
    asn1crypto
    attrs
    importlib-metadata
    jinja2
    lief
    lxml
    progressbar2
    prompt-toolkit
    pyaxmlparser
    pypubsub
    pyyaml
    termcolor
@@ -43,12 +45,12 @@ python3.pkgs.buildPythonApplication rec {
    "trueseeing"
  ];

  meta = with lib; {
  meta = {
    description = "Non-decompiling Android vulnerability scanner";
    homepage = "https://github.com/alterakey/trueseeing";
    changelog = "https://github.com/alterakey/trueseeing/releases/tag/v${version}";
    license = with licenses; [ gpl3Plus ];
    maintainers = with maintainers; [ fab ];
    license = lib.licenses.gpl3Plus;
    maintainers = [ lib.maintainers.fab ];
    mainProgram = "trueseeing";
  };
}