46 lines
991 B
Nix
46 lines
991 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
pysigma,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pysigma-backend-insightidr";
|
|
version = "0.2.4";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SigmaHQ";
|
|
repo = "pySigma-backend-insightidr";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-dc25zDYQeU9W9qwrRz7zsM2wOl8kMapDvwFhB6VOwhY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [ pysigma ];
|
|
|
|
pythonRelaxDeps = [ "pysigma" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [
|
|
"sigma.backends.insight_idr"
|
|
"sigma.pipelines.insight_idr"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library to support the Rapid7 InsightIDR backend for pySigma";
|
|
homepage = "https://github.com/SigmaHQ/pySigma-backend-insightidr";
|
|
license = with licenses; [ lgpl21Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|