depot/third_party/nixpkgs/pkgs/tools/security/quark-engine/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

54 lines
1.1 KiB
Nix

{
lib,
fetchFromGitHub,
gitMinimal,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "quark-engine";
version = "24.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "quark-engine";
repo = "quark-engine";
rev = "refs/tags/v${version}";
hash = "sha256-DDtDNa/QZ5n5ASN6Fu/nnVEQ/9Vu5HSKXKvbrg6Bsjs=";
};
build-system = with python3.pkgs; [ setuptools ];
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
dependencies = with python3.pkgs; [
androguard
click
colorama
gitMinimal
graphviz
pandas
plotly
prettytable
prompt-toolkit
r2pipe
rzpipe
setuptools
tqdm
];
pythonRelaxDeps = [ "r2pipe" ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "quark" ];
meta = with lib; {
description = "Android malware (analysis and scoring) system";
homepage = "https://quark-engine.readthedocs.io/";
changelog = "https://github.com/quark-engine/quark-engine/releases/tag/v${version}";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}