tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
quark-engine: format with nixfmt
Fabian Affolter
2 years ago
71a0a41d
fa92d21f
+9
-16
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
quark-engine
default.nix
+9
-16
pkgs/tools/security/quark-engine/default.nix
···
1
1
-
{ lib
2
2
-
, fetchFromGitHub
3
3
-
, gitMinimal
4
4
-
, python3
1
1
+
{
2
2
+
lib,
3
3
+
fetchFromGitHub,
4
4
+
gitMinimal,
5
5
+
python3,
5
6
}:
6
7
7
8
python3.pkgs.buildPythonApplication rec {
···
16
17
hash = "sha256-W1UeTiyyYZzxu3XQ/6VkTvEyqPWl1Du6QutuoPhaSfs=";
17
18
};
18
19
19
19
-
build-system = with python3.pkgs; [
20
20
-
setuptools
21
21
-
];
20
20
+
build-system = with python3.pkgs; [ setuptools ];
22
21
23
23
-
nativeBuildInputs = with python3.pkgs; [
24
24
-
pythonRelaxDepsHook
25
25
-
];
22
22
+
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
26
23
27
24
dependencies = with python3.pkgs; [
28
25
androguard
···
40
37
tqdm
41
38
];
42
39
43
43
-
pythonRelaxDeps = [
44
44
-
"r2pipe"
45
45
-
];
40
40
+
pythonRelaxDeps = [ "r2pipe" ];
46
41
47
42
# Project has no tests
48
43
doCheck = false;
49
44
50
50
-
pythonImportsCheck = [
51
51
-
"quark"
52
52
-
];
45
45
+
pythonImportsCheck = [ "quark" ];
53
46
54
47
meta = with lib; {
55
48
description = "Android malware (analysis and scoring) system";