ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pysigma-pipeline-crowdstrike / default.nix
bloba9e3e01667ea17f0aea5f45cc64e461ccdc07a65
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , poetry-core
5 , pysigma
6 , pytestCheckHook
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "pysigma-pipeline-crowdstrike";
12   version = "0.1.8";
13   format = "pyproject";
15   disabled = pythonOlder "3.8";
17   src = fetchFromGitHub {
18     owner = "SigmaHQ";
19     repo = "pySigma-pipeline-crowdstrike";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-ZSTnQmdLcMa1XwbQxGpE734yN92zDy72SX9feTL9wjI=";
22   };
24   nativeBuildInputs = [
25     poetry-core
26   ];
28   propagatedBuildInputs = [
29     pysigma
30   ];
32   checkInputs = [
33     pytestCheckHook
34   ];
36   pythonImportsCheck = [
37     "sigma.pipelines.crowdstrike"
38   ];
40   meta = with lib; {
41     description = "Library to support CrowdStrike pipeline for pySigma";
42     homepage = "https://github.com/SigmaHQ/pySigma-pipeline-crowdstrike";
43     license = with licenses; [ lgpl21Only ];
44     maintainers = with maintainers; [ fab ];
45   };