biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pysigma-pipeline-windows / default.nix
blobd40ceff1c7922d55ac88ecb71ef888972f3740d4
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   poetry-core,
6   pysigma,
7   pytestCheckHook,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "pysigma-pipeline-windows";
13   version = "1.2.0";
14   format = "pyproject";
16   disabled = pythonOlder "3.8";
18   src = fetchFromGitHub {
19     owner = "SigmaHQ";
20     repo = "pySigma-pipeline-windows";
21     rev = "refs/tags/v${version}";
22     hash = "sha256-Ss0OMd8urCYQUlvsm/m8Kz0jY4pVSEoZuLxs1JLWxQA=";
23   };
25   nativeBuildInputs = [ poetry-core ];
27   propagatedBuildInputs = [ pysigma ];
29   nativeCheckInputs = [ pytestCheckHook ];
31   pythonImportsCheck = [ "sigma.pipelines.windows" ];
33   meta = with lib; {
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 ];
39   };