11 buildPythonPackage rec {
12 pname = "pysigma-pipeline-windows";
16 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
20 repo = "pySigma-pipeline-windows";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-Ss0OMd8urCYQUlvsm/m8Kz0jY4pVSEoZuLxs1JLWxQA=";
25 nativeBuildInputs = [ poetry-core ];
27 propagatedBuildInputs = [ pysigma ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "sigma.pipelines.windows" ];
34 description = "Library to support Windows service pipeline for pySigma";
35 homepage = "https://github.com/SigmaHQ/pySigma-pipeline-windows";
36 changelog = "https://github.com/SigmaHQ/pySigma-pipeline-windows/releases/tag/v${version}";
37 license = with licenses; [ lgpl21Only ];
38 maintainers = with maintainers; [ fab ];