about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-11-22 23:05:43 +0100
committerGitHub <noreply@github.com>2022-11-22 23:05:43 +0100
commit977d4985a05cc68c9f3a208415aa2ef028b52772 (patch)
treeb57ac481da7d86a9bf28f5c045268f2121889344 /pkgs
parentb8fd111e9c5e7cffb7e7c8706bf48314493f6256 (diff)
parent7478ccb19310121a97245c7c1ba5b95a5351b6c5 (diff)
Merge pull request #202374 from fabaff/pip-audit-bump
pip-audit: 2.4.5 -> 2.4.6
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/pip-audit/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/tools/pip-audit/default.nix b/pkgs/development/tools/pip-audit/default.nix
index 05e5d91793944..f787cbe864a76 100644
--- a/pkgs/development/tools/pip-audit/default.nix
+++ b/pkgs/development/tools/pip-audit/default.nix
@@ -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 ];
   };