sigma-cli: 0.5.3 -> 0.7.2

Diff: https://github.com/SigmaHQ/sigma-cli/compare/refs/tags/v0.7.2...v0.7.2
This commit is contained in:
Fabian Affolter 2023-04-17 08:45:07 +02:00
parent 5586e0dd14
commit e7a73d03f5

View file

@ -5,22 +5,28 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "sigma-cli"; pname = "sigma-cli";
version = "0.5.3"; version = "0.7.2";
format = "pyproject"; format = "pyproject";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "SigmaHQ"; owner = "SigmaHQ";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-orJkWVBZnbhRjYDI6s5fPymzpTmZE5MsmYWp3JOKjnU="; hash = "sha256-yzo/BotNzTBjdkaXI1lHntpI5AyW5AbpFu3XtkWpHU4=";
}; };
postPatch = ''
substituteInPlace pyproject.toml \
--replace '= "^' '= ">='
'';
nativeBuildInputs = with python3.pkgs; [ nativeBuildInputs = with python3.pkgs; [
poetry-core poetry-core
]; ];
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with python3.pkgs; [
click click
colorama
prettytable prettytable
pysigma pysigma
pysigma-backend-elasticsearch pysigma-backend-elasticsearch
@ -37,10 +43,14 @@ python3.pkgs.buildPythonApplication rec {
pytestCheckHook pytestCheckHook
]; ];
postPatch = '' disabledTests = [
substituteInPlace pyproject.toml \ "test_plugin_list"
--replace '= "^' '= ">=' "test_plugin_list_filtered"
''; "test_plugin_list_search"
"test_plugin_install_notexisting"
"test_plugin_install"
"test_plugin_uninstall"
];
pythonImportsCheck = [ pythonImportsCheck = [
"sigma.cli" "sigma.cli"