{ lib , buildPythonPackage , fetchFromGitHub , poetry-core , pysigma , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "pysigma-backend-splunk"; version = "0.1.2"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "SigmaHQ"; repo = "pySigma-backend-splunk"; rev = "v${version}"; hash = "sha256-jKvGBUO55DtF6bpgEL82XB5Ba+kmqJsCqUdzftcpSJ0="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ pysigma ]; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "sigma.backends.splunk" ]; meta = with lib; { description = "Library to support Splunk for pySigma"; homepage = "https://github.com/SigmaHQ/pySigma-backend-splunk"; license = with licenses; [ lgpl21Only ]; maintainers = with maintainers; [ fab ]; }; }