python3Packages.sarif-tools: 3.0.0 -> 3.0.2

https://github.com/microsoft/sarif-tools/releases/tag/v3.0.2
This commit is contained in:
Martin Weinelt
2024-10-13 11:09:13 +02:00
parent 8bb6d47f7f
commit 0954dc1895
@@ -4,6 +4,7 @@
buildPythonPackage,
poetry-core,
jsonpath-ng,
jsonschema,
jinja2,
python,
python-docx,
@@ -15,32 +16,33 @@
buildPythonPackage rec {
pname = "sarif-tools";
version = "3.0.0";
version = "3.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "microsoft";
repo = "sarif-tools";
rev = "refs/tags/v${version}";
hash = "sha256-MYwhewUTZ3Wl93p6bN3+bHqtXz+BAlAhte+JaetPQYU=";
hash = "sha256-VGdl4WBdIiCWPGfFxqcG4XlbLh0uiLQXdrhUa2OxaVY=";
};
disabled = pythonOlder "3.8";
nativeBuildInputs = [
poetry-core
];
build-system = [ poetry-core ];
propagatedBuildInputs = [
jsonpath-ng
dependencies = [
jinja2
jsonpath-ng
matplotlib
python
python-docx
matplotlib
pyyaml
];
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
jsonschema
pytestCheckHook
];
pythonRelaxDeps = [ "python-docx" ];