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
This commit is contained in:
Robert Schütz
2025-12-02 08:39:22 -08:00
parent cc5108b965
commit 8029ae511a
@@ -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;