python313Packages.pysigma-pipeline-crowdstrike: modernize

This commit is contained in:
Fabian Affolter
2025-12-23 09:33:11 +01:00
parent 801840deed
commit 8fc2591069
@@ -5,7 +5,6 @@
poetry-core,
pysigma,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
@@ -13,8 +12,6 @@ buildPythonPackage rec {
version = "2.0.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "SigmaHQ";
repo = "pySigma-pipeline-crowdstrike";
@@ -22,6 +19,8 @@ buildPythonPackage rec {
hash = "sha256-WYgT0tRXdSR4qJA7UHotPn9qfnpaIJaqASBXVDG1kOU=";
};
pythonRelaxDeps = [ "pysigma" ];
build-system = [ poetry-core ];
dependencies = [ pysigma ];
@@ -38,8 +37,8 @@ buildPythonPackage rec {
meta = {
description = "Library to support CrowdStrike pipeline for pySigma";
homepage = "https://github.com/SigmaHQ/pySigma-pipeline-crowdstrike";
changelog = "https://github.com/SigmaHQ/pySigma-pipeline-crowdstrike/releases/tag/v${version}";
license = with lib.licenses; [ lgpl21Only ];
changelog = "https://github.com/SigmaHQ/pySigma-pipeline-crowdstrike/releases/tag/${src.tag}";
license = lib.licenses.lgpl21Only;
maintainers = with lib.maintainers; [ fab ];
};
}