8 python3.pkgs.buildPythonApplication rec {
9 pname = "quark-engine";
13 src = fetchFromGitHub {
14 owner = "quark-engine";
15 repo = "quark-engine";
16 rev = "refs/tags/v${version}";
17 hash = "sha256-Nv4k/AN906ue13tlif+JsHLSWxdoI4maJ3EUGOZkDNI=";
20 build-system = with python3.pkgs; [ setuptools ];
23 dependencies = with python3.pkgs; [
39 pythonRelaxDeps = [ "r2pipe" ];
41 # Project has no tests
44 pythonImportsCheck = [ "quark" ];
47 description = "Android malware (analysis and scoring) system";
48 homepage = "https://quark-engine.readthedocs.io/";
49 changelog = "https://github.com/quark-engine/quark-engine/releases/tag/v${version}";
50 license = with licenses; [ gpl3Only ];
51 maintainers = with maintainers; [ fab ];