11 buildPythonPackage rec {
12 pname = "poetry-audit-plugin";
16 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
20 repo = "poetry-audit-plugin";
21 rev = "refs/tags/${version}";
22 hash = "sha256-kiNtzEup2ygCTk0zk8YV2jxAj6ZzOhP8v0U4FbV15hI=";
33 propagatedBuildInputs = [
37 pythonImportsCheck = [ "poetry_audit_plugin" ];
40 poetry # for the executable
48 description = "Poetry plugin for checking security vulnerabilities in dependencies";
49 homepage = "https://github.com/opeco17/poetry-audit-plugin";
50 license = lib.licenses.mit;
51 maintainers = with lib.maintainers; [ dotlambda ];