tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
faraday-cli: init at 2.0.2
Fabian Affolter
4 years ago
60218ef0
787af490
+48
2 changed files
expand all
collapse all
unified
split
pkgs
tools
security
faraday-cli
default.nix
top-level
all-packages.nix
+46
pkgs/tools/security/faraday-cli/default.nix
reviewed
···
1
1
+
{ lib
2
2
+
, fetchFromGitHub
3
3
+
, python3
4
4
+
}:
5
5
+
6
6
+
python3.pkgs.buildPythonApplication rec {
7
7
+
pname = "faraday-cli";
8
8
+
version = "2.0.2";
9
9
+
10
10
+
disabled = python3.pythonOlder "3.7";
11
11
+
12
12
+
src = fetchFromGitHub {
13
13
+
owner = "infobyte";
14
14
+
repo = pname;
15
15
+
rev = "v${version}";
16
16
+
sha256 = "1jq8sim0b6k830lv1qzbrd1mx0nc2x1jq24fbama76gzqlb2axi7";
17
17
+
};
18
18
+
19
19
+
propagatedBuildInputs = with python3.pkgs; [
20
20
+
click
21
21
+
colorama
22
22
+
faraday-plugins
23
23
+
jsonschema
24
24
+
pyyaml
25
25
+
simple-rest-client
26
26
+
tabulate
27
27
+
validators
28
28
+
spinners
29
29
+
termcolor
30
30
+
cmd2
31
31
+
log-symbols
32
32
+
arrow
33
33
+
];
34
34
+
35
35
+
# Tests requires credentials
36
36
+
doCheck = false;
37
37
+
38
38
+
pythonImportsCheck = [ "faraday_cli" ];
39
39
+
40
40
+
meta = with lib; {
41
41
+
description = "Command Line Interface for Faraday";
42
42
+
homepage = "https://github.com/infobyte/faraday-cli";
43
43
+
license = with licenses; [ gpl3Only ];
44
44
+
maintainers = with maintainers; [ fab ];
45
45
+
};
46
46
+
}
+2
pkgs/top-level/all-packages.nix
reviewed
···
4980
4980
4981
4981
fabric-installer = callPackage ../tools/games/minecraft/fabric-installer { };
4982
4982
4983
4983
+
faraday-cli = callPackage ../tools/security/faraday-cli { };
4984
4984
+
4983
4985
fastlane = callPackage ../tools/admin/fastlane { };
4984
4986
4985
4987
fatresize = callPackage ../tools/filesystems/fatresize {};