tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.faraday-plugins: init at 1.5.3
Fabian Affolter
4 years ago
59ff8e13
b5044c18
+66
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
faraday-plugins
default.nix
top-level
python-packages.nix
+64
pkgs/development/python-modules/faraday-plugins/default.nix
···
1
1
+
{ lib
2
2
+
, beautifulsoup4
3
3
+
, buildPythonPackage
4
4
+
, click
5
5
+
, colorama
6
6
+
, fetchFromGitHub
7
7
+
, html2text
8
8
+
, lxml
9
9
+
, pytestCheckHook
10
10
+
, python-dateutil
11
11
+
, pytz
12
12
+
, requests
13
13
+
, simplejson
14
14
+
, tabulate
15
15
+
}:
16
16
+
17
17
+
buildPythonPackage rec {
18
18
+
pname = "faraday-plugins";
19
19
+
version = "1.5.3";
20
20
+
21
21
+
src = fetchFromGitHub {
22
22
+
owner = "infobyte";
23
23
+
repo = "faraday_plugins";
24
24
+
rev = "v${version}";
25
25
+
sha256 = "0nyywpsyw7akwdah75s9mz5nz11y1hbynp08pvqifwdw49crih02";
26
26
+
};
27
27
+
28
28
+
propagatedBuildInputs = [
29
29
+
beautifulsoup4
30
30
+
click
31
31
+
colorama
32
32
+
html2text
33
33
+
lxml
34
34
+
python-dateutil
35
35
+
pytz
36
36
+
requests
37
37
+
simplejson
38
38
+
tabulate
39
39
+
];
40
40
+
41
41
+
checkInputs = [
42
42
+
pytestCheckHook
43
43
+
];
44
44
+
45
45
+
disabledTestPaths = [
46
46
+
# faraday itself is currently not available
47
47
+
"tests/test_report_collection.py"
48
48
+
];
49
49
+
50
50
+
disabledTests = [
51
51
+
# Fail because of missing faraday
52
52
+
"test_detect_report"
53
53
+
"test_process_report_summary"
54
54
+
];
55
55
+
56
56
+
pythonImportsCheck = [ "faraday_plugins" ];
57
57
+
58
58
+
meta = with lib; {
59
59
+
description = "Security tools report parsers for Faraday";
60
60
+
homepage = "https://github.com/infobyte/faraday_plugins";
61
61
+
license = with licenses; [ gpl3Only ];
62
62
+
maintainers = with maintainers; [ fab ];
63
63
+
};
64
64
+
}
+2
pkgs/top-level/python-packages.nix
···
2504
2504
2505
2505
falcon = callPackage ../development/python-modules/falcon { };
2506
2506
2507
2507
+
faraday-plugins = callPackage ../development/python-modules/faraday-plugins { };
2508
2508
+
2507
2509
fastapi = callPackage ../development/python-modules/fastapi { };
2508
2510
2509
2511
fastcache = callPackage ../development/python-modules/fastcache { };