sigma-cli: 3.0.2 -> 3.0.3 (#538461)

This commit is contained in:
Fabian Affolter
2026-07-05 08:17:51 +00:00
committed by GitHub
+6 -6
View File
@@ -5,16 +5,16 @@
writableTmpDirAsHomeHook,
}:
python3.pkgs.buildPythonApplication rec {
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "sigma-cli";
version = "3.0.2";
version = "3.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "SigmaHQ";
repo = "sigma-cli";
tag = "v${version}";
hash = "sha256-46M/WD2BIPMpABai4WZBmxjgI+skwcaRJwPFGXje5y4=";
tag = "v${finalAttrs.version}";
hash = "sha256-7zPB2eb+PeJ0xKygf/oRGZfntHiHHkk9L5Pr7oUfvkY=";
};
pythonRelaxDeps = [ "click" ];
@@ -45,9 +45,9 @@ python3.pkgs.buildPythonApplication rec {
meta = {
description = "Sigma command line interface";
homepage = "https://github.com/SigmaHQ/sigma-cli";
changelog = "https://github.com/SigmaHQ/sigma-cli/releases/tag/${src.tag}";
changelog = "https://github.com/SigmaHQ/sigma-cli/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "sigma";
};
}
})