ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "trueseeing";
|
|
version = "2.2.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alterakey";
|
|
repo = "trueseeing";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-bgvnzCcxRiJnjcHVbcIA6YfpCOIDTLD5tQae/0Tqk4E=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
flit-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
pythonRelaxDeps = true;
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
asn1crypto
|
|
attrs
|
|
importlib-metadata
|
|
jinja2
|
|
lxml
|
|
progressbar2
|
|
pypubsub
|
|
pyyaml
|
|
termcolor
|
|
zstandard
|
|
];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"trueseeing"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Non-decompiling Android vulnerability scanner";
|
|
mainProgram = "trueseeing";
|
|
homepage = "https://github.com/alterakey/trueseeing";
|
|
changelog = "https://github.com/alterakey/trueseeing/releases/tag/v${version}";
|
|
license = with licenses; [ gpl3Plus ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|