poetryPlugins.poetry-audit-plugin: 0.4.0 -> 1.0.0 (#467198)

This commit is contained in:
dotlambda
2025-12-04 01:58:07 +00:00
committed by GitHub
@@ -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;