diff --git a/pkgs/development/python-modules/sarif-tools/default.nix b/pkgs/development/python-modules/sarif-tools/default.nix index c499d021447d..b75379c06af2 100644 --- a/pkgs/development/python-modules/sarif-tools/default.nix +++ b/pkgs/development/python-modules/sarif-tools/default.nix @@ -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" ];