{ lib , buildPythonPackage , fetchFromGitHub , poetry-core , pysigma , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "pysigma-pipeline-windows"; version = "0.1.0"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "SigmaHQ"; repo = "pySigma-pipeline-windows"; rev = "v${version}"; hash = "sha256-BO6hiPLwEJX0sICqMZfcO4tqljdS+93Z1kG8IWsV9og="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ pysigma ]; checkInputs = [ 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"; license = with licenses; [ lgpl21Only ]; maintainers = with maintainers; [ fab ]; }; }