quark-engine: relax prompt-toolkit constraint

This commit is contained in:
Fabian Affolter 2022-01-06 15:02:07 +01:00
parent 2dedc1eaa4
commit a8d77ae561

View file

@ -7,8 +7,7 @@
python3.pkgs.buildPythonApplication rec {
pname = "quark-engine";
version = "21.10.2";
disabled = python3.pythonOlder "3.6";
format = "setuptools";
src = fetchFromGitHub {
owner = pname;
@ -31,10 +30,17 @@ python3.pkgs.buildPythonApplication rec {
tqdm
];
postPatch = ''
substituteInPlace setup.py \
--replace "prompt-toolkit==3.0.19" "prompt-toolkit>=3.0.19"
'';
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "quark" ];
pythonImportsCheck = [
"quark"
];
meta = with lib; {
description = "Android malware (analysis and scoring) system";