tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
knowsmore: format with nixfmt
Fabian Affolter
2 years ago
fbe5ef5f
993f9d11
+10
-21
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
knowsmore
default.nix
+10
-21
pkgs/tools/security/knowsmore/default.nix
···
1
1
-
{ lib
2
2
-
, fetchFromGitHub
3
3
-
, python3
1
1
+
{
2
2
+
lib,
3
3
+
fetchFromGitHub,
4
4
+
python3,
4
5
}:
5
6
6
7
python3.pkgs.buildPythonApplication rec {
···
20
21
"urllib3"
21
22
];
22
23
23
23
-
pythonRemoveDeps = [
24
24
-
"bs4"
25
25
-
];
24
24
+
pythonRemoveDeps = [ "bs4" ];
26
25
27
27
-
build-system = with python3.pkgs; [
28
28
-
setuptools
29
29
-
];
26
26
+
build-system = with python3.pkgs; [ setuptools ];
30
27
31
31
-
nativeBuildInputs = with python3.pkgs; [
32
32
-
pythonRelaxDepsHook
33
33
-
];
28
28
+
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
34
29
35
30
dependencies = with python3.pkgs; [
36
31
aioconsole
···
50
45
xmltodict
51
46
];
52
47
53
53
-
nativeCheckInputs = with python3.pkgs; [
54
54
-
pytestCheckHook
55
55
-
];
48
48
+
nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ];
56
49
57
57
-
pythonImportsCheck = [
58
58
-
"knowsmore"
59
59
-
];
50
50
+
pythonImportsCheck = [ "knowsmore" ];
60
51
61
61
-
pytestFlagsArray = [
62
62
-
"tests/tests*"
63
63
-
];
52
52
+
pytestFlagsArray = [ "tests/tests*" ];
64
53
65
54
meta = with lib; {
66
55
description = "Tool for pentesting Microsoft Active Directory";