{ lib, buildPythonPackage, fetchFromGitHub, poetry-core, pysigma, pytestCheckHook, pythonOlder, }: buildPythonPackage rec { pname = "pysigma-pipeline-windows"; version = "1.2.0"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "SigmaHQ"; repo = "pySigma-pipeline-windows"; rev = "refs/tags/v${version}"; hash = "sha256-Ss0OMd8urCYQUlvsm/m8Kz0jY4pVSEoZuLxs1JLWxQA="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ pysigma ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "sigma.pipelines.windows" ]; meta = with lib; { description = "Library to support Windows service pipeline for pySigma"; homepage = "https://github.com/SigmaHQ/pySigma-pipeline-windows"; changelog = "https://github.com/SigmaHQ/pySigma-pipeline-windows/releases/tag/v${version}"; license = with licenses; [ lgpl21Only ]; maintainers = with maintainers; [ fab ]; }; }