From 8029ae511a079deffed17689e56c364da2f4937f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 2 Dec 2025 08:38:30 -0800 Subject: [PATCH] poetryPlugins.poetry-audit-plugin: 0.4.0 -> 1.0.0 Diff: https://github.com/opeco17/poetry-audit-plugin/compare/0.4.0...1.0.0 Changelog: https://github.com/opeco17/poetry-audit-plugin/releases/tag/1.0.0 --- .../po/poetry/plugins/poetry-audit-plugin.nix | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/pkgs/by-name/po/poetry/plugins/poetry-audit-plugin.nix b/pkgs/by-name/po/poetry/plugins/poetry-audit-plugin.nix index fd9c56acfea7..c4af20a8a753 100644 --- a/pkgs/by-name/po/poetry/plugins/poetry-audit-plugin.nix +++ b/pkgs/by-name/po/poetry/plugins/poetry-audit-plugin.nix @@ -1,7 +1,6 @@ { lib, buildPythonPackage, - pythonOlder, fetchFromGitHub, poetry-core, poetry, @@ -11,26 +10,20 @@ buildPythonPackage rec { pname = "poetry-audit-plugin"; - version = "0.4.0"; + version = "1.0.0"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "opeco17"; repo = "poetry-audit-plugin"; - rev = "refs/tags/${version}"; - hash = "sha256-kiNtzEup2ygCTk0zk8YV2jxAj6ZzOhP8v0U4FbV15hI="; + tag = version; + hash = "sha256-aAQzgxzBJa/pK+hQj0tN4Zg1MG/sT0rbaMNMIxnhxdU="; }; build-system = [ poetry-core ]; - pythonRelaxDeps = [ - "poetry" - ]; - buildInputs = [ poetry ]; @@ -50,6 +43,7 @@ buildPythonPackage rec { doCheck = false; meta = { + changelog = "https://github.com/opeco17/poetry-audit-plugin/releases/tag/${src.tag}"; description = "Poetry plugin for checking security vulnerabilities in dependencies"; homepage = "https://github.com/opeco17/poetry-audit-plugin"; license = lib.licenses.mit;