mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 17:53:14 +00:00
poetryPlugins.poetry-audit-plugin: init at 0.3.0
This commit is contained in:
parent
0349728efb
commit
72fc45dc80
@ -20,6 +20,7 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
plugins = with python.pkgs; {
|
plugins = with python.pkgs; {
|
||||||
|
poetry-audit-plugin = callPackage ./plugins/poetry-audit-plugin.nix { };
|
||||||
poetry-plugin-up = callPackage ./plugins/poetry-plugin-up.nix { };
|
poetry-plugin-up = callPackage ./plugins/poetry-plugin-up.nix { };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -0,0 +1,54 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, pythonOlder
|
||||||
|
, fetchFromGitHub
|
||||||
|
, poetry-core
|
||||||
|
, poetry
|
||||||
|
, safety
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "poetry-audit-plugin";
|
||||||
|
version = "0.3.0";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "opeco17";
|
||||||
|
repo = "poetry-audit-plugin";
|
||||||
|
rev = "refs/tags/${version}";
|
||||||
|
hash = "sha256-49OnYz3EFiqOe+cLgfynjy14Ve4Ga6OUrLdM8HhZuKQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
poetry-core
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
poetry
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
safety
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "poetry_audit_plugin" ];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
poetry # for the executable
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
# requires networking
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Poetry plugin for checking security vulnerabilities in dependencies";
|
||||||
|
homepage = "https://github.com/opeco17/poetry-audit-plugin";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ dotlambda ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user