lol

quark-engine: relax prompt-toolkit constraint

+9 -3
+9 -3
pkgs/tools/security/quark-engine/default.nix
··· 7 python3.pkgs.buildPythonApplication rec { 8 pname = "quark-engine"; 9 version = "21.10.2"; 10 - 11 - disabled = python3.pythonOlder "3.6"; 12 13 src = fetchFromGitHub { 14 owner = pname; ··· 31 tqdm 32 ]; 33 34 # Project has no tests 35 doCheck = false; 36 37 - pythonImportsCheck = [ "quark" ]; 38 39 meta = with lib; { 40 description = "Android malware (analysis and scoring) system";
··· 7 python3.pkgs.buildPythonApplication rec { 8 pname = "quark-engine"; 9 version = "21.10.2"; 10 + format = "setuptools"; 11 12 src = fetchFromGitHub { 13 owner = pname; ··· 30 tqdm 31 ]; 32 33 + postPatch = '' 34 + substituteInPlace setup.py \ 35 + --replace "prompt-toolkit==3.0.19" "prompt-toolkit>=3.0.19" 36 + ''; 37 + 38 # Project has no tests 39 doCheck = false; 40 41 + pythonImportsCheck = [ 42 + "quark" 43 + ]; 44 45 meta = with lib; { 46 description = "Android malware (analysis and scoring) system";