Merge pull request #153726 from fabaff/fix-quark-engine

quark-engine: relax prompt-toolkit constraint
This commit is contained in:
Fabian Affolter 2022-01-06 20:14:16 +01:00 committed by GitHub
commit b24e3b1341
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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";