tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
quark-engine: relax prompt-toolkit constraint
Fabian Affolter
4 years ago
a8d77ae5
2dedc1ea
+9
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
quark-engine
default.nix
+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
0
0
0
0
0
34
# Project has no tests
35
doCheck = false;
36
37
-
pythonImportsCheck = [ "quark" ];
0
0
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";
0
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";