pysigma-backend-loki: init at 0.12.3
This commit is contained in:
@@ -33,6 +33,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
pysigma-backend-opensearch
|
||||
pysigma-backend-qradar
|
||||
pysigma-backend-splunk
|
||||
pysigma-backend-loki
|
||||
pysigma-pipeline-crowdstrike
|
||||
pysigma-pipeline-sysmon
|
||||
pysigma-pipeline-windows
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
poetry-core,
|
||||
pysigma,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysigma-backend-loki";
|
||||
version = "0.12.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "grafana";
|
||||
repo = "pySigma-backend-loki";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-tsAtD98vWU8mB+Y3ePp2S54dSDu5R7DIDYDin+JJgSg=";
|
||||
};
|
||||
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
dependencies = [ pysigma ];
|
||||
|
||||
pythonRelaxDeps = [ "pysigma" ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "sigma.backends.loki" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library to support the loki backend for pySigma";
|
||||
homepage = "https://github.com/grafana/pySigma-backend-loki";
|
||||
license = with licenses; [ lgpl21Only ];
|
||||
maintainers = with maintainers; [ peterromfeldhk ];
|
||||
};
|
||||
}
|
||||
@@ -12788,6 +12788,8 @@ self: super: with self; {
|
||||
|
||||
pysigma-backend-insightidr = callPackage ../development/python-modules/pysigma-backend-insightidr { };
|
||||
|
||||
pysigma-backend-loki = callPackage ../development/python-modules/pysigma-backend-loki { };
|
||||
|
||||
pysigma-pipeline-crowdstrike = callPackage ../development/python-modules/pysigma-pipeline-crowdstrike { };
|
||||
|
||||
pysigma-pipeline-sysmon = callPackage ../development/python-modules/pysigma-pipeline-sysmon { };
|
||||
|
||||
Reference in New Issue
Block a user