Merge pull request #307272 from fabaff/pysigma-bump

python312Packages.pysigma: 0.11.4 -> 0.11.5
This commit is contained in:
Fabian Affolter 2024-04-27 22:36:50 +02:00 committed by GitHub
commit d728bbd53d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,21 +1,22 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, jinja2
, packaging
, poetry-core
, pyparsing
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, pyyaml
, requests
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
jinja2,
packaging,
poetry-core,
pyparsing,
pytestCheckHook,
pythonOlder,
pythonRelaxDepsHook,
pyyaml,
requests,
}:
buildPythonPackage rec {
pname = "pysigma";
version = "0.11.4";
version = "0.11.5";
pyproject = true;
disabled = pythonOlder "3.8";
@ -24,7 +25,7 @@ buildPythonPackage rec {
owner = "SigmaHQ";
repo = "pySigma";
rev = "refs/tags/v${version}";
hash = "sha256-tlFrUAwOTK+O/YJjfA6nwsVAcZrMNXFmCYoxHc2ykVY=";
hash = "sha256-Mr4etI6VNPWDVZj4A9j3Ka9v+BpFC75MLXppYELIWrg=";
};
pythonRelaxDeps = [
@ -32,10 +33,9 @@ buildPythonPackage rec {
"packaging"
];
build-system = [
poetry-core
pythonRelaxDepsHook
];
build-system = [ poetry-core ];
nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
jinja2
@ -45,9 +45,7 @@ buildPythonPackage rec {
requests
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# Tests require network connection
@ -55,9 +53,7 @@ buildPythonPackage rec {
"test_sigma_plugin_installation"
];
pythonImportsCheck = [
"sigma"
];
pythonImportsCheck = [ "sigma" ];
meta = with lib; {
description = "Library to parse and convert Sigma rules into queries";