tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
sigma-cli: format with nixfmt
Fabian Affolter
2 years ago
83d2fca2
22ee207e
+7
-12
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
sigma-cli
default.nix
+7
-12
pkgs/tools/security/sigma-cli/default.nix
reviewed
···
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
--replace '= "^' '= ">='
21
22
'';
22
23
23
23
-
build-system = with python3.pkgs; [
24
24
-
poetry-core
25
25
-
];
24
24
+
build-system = with python3.pkgs; [ poetry-core ];
26
25
27
26
dependencies = with python3.pkgs; [
28
27
click
···
39
38
pysigma-pipeline-windows
40
39
];
41
40
42
42
-
nativeCheckInputs = with python3.pkgs; [
43
43
-
pytestCheckHook
44
44
-
];
41
41
+
nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ];
45
42
46
43
disabledTests = [
47
44
"test_plugin_list"
···
61
58
"test_check_exclude"
62
59
];
63
60
64
64
-
pythonImportsCheck = [
65
65
-
"sigma.cli"
66
66
-
];
61
61
+
pythonImportsCheck = [ "sigma.cli" ];
67
62
68
63
meta = with lib; {
69
64
description = "Sigma command line interface";