Unverified Commit 977d4985 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #202374 from fabaff/pip-audit-bump

pip-audit: 2.4.5 -> 2.4.6
parents b8fd111e 7478ccb1
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -25,14 +25,14 @@ with py.pkgs;

buildPythonApplication rec {
  pname = "pip-audit";
  version = "2.4.5";
  version = "2.4.6";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "trailofbits";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-S3v2utDLZOY7RXOnMQV8Zo7h6vMPyiwlws/EftXFpTM=";
    rev = "refs/tags/v${version}";
    hash = "sha256-GArssIXq7htxQLitAjkdQYrtH6YDECptRL2iy4TZmy0=";
  };

  nativeBuildInputs = [
@@ -84,6 +84,7 @@ buildPythonApplication rec {
  meta = with lib; {
    description = "Tool for scanning Python environments for known vulnerabilities";
    homepage = "https://github.com/trailofbits/pip-audit";
    changelog = "https://github.com/pypa/pip-audit/releases/tag/v${version}";
    license = with licenses; [ asl20 ];
    maintainers = with maintainers; [ fab ];
  };