nixpkgs/pkgs/tools/security/quark-engine/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
950 B
Nix
Raw Normal View History

2021-10-06 10:23:16 +00:00
{ lib
, fetchFromGitHub
, gitMinimal
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "quark-engine";
version = "23.6.1";
format = "setuptools";
2021-10-06 10:23:16 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2022-12-28 07:28:38 +00:00
rev = "refs/tags/v${version}";
sha256 = "sha256-RkYLTZ40ZINg3cNPBJrSOGOzSSfislBmwdUOQHDu32U=";
2021-10-06 10:23:16 +00:00
};
propagatedBuildInputs = with python3.pkgs; [
androguard
click
colorama
gitMinimal
graphviz
pandas
plotly
prettytable
prompt-toolkit
rzpipe
tqdm
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"quark"
];
2021-10-06 10:23:16 +00:00
meta = with lib; {
description = "Android malware (analysis and scoring) system";
homepage = "https://quark-engine.readthedocs.io/";
2022-12-29 15:11:06 +00:00
changelog = "https://github.com/quark-engine/quark-engine/releases/tag/v${version}";
2021-10-06 10:23:16 +00:00
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}