about summary refs log tree commit diff
path: root/pkgs/development/python-modules/certbot
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2022-10-12 11:05:00 +0200
committerFlorian Klink <flokli@flokli.de>2022-10-12 11:05:00 +0200
commita85578e40171d68231a6312a8b23249cc314ce54 (patch)
tree91f99f55b4a291211c2ce72e900e96fe6be0d260 /pkgs/development/python-modules/certbot
parent9017c2b775dfbd894d1a248511749b5ad06a2ac0 (diff)
certbot: 1.29.0 -> 1.31.0
Fixes `(pkgs.certbot.withPlugins (p: [ p.certbot-dns-route53 ]))` and
`certbot-full` build.
Diffstat (limited to 'pkgs/development/python-modules/certbot')
-rw-r--r--pkgs/development/python-modules/certbot/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/certbot/default.nix b/pkgs/development/python-modules/certbot/default.nix
index 498dcf23b11ad..c2f3c1f7915f5 100644
--- a/pkgs/development/python-modules/certbot/default.nix
+++ b/pkgs/development/python-modules/certbot/default.nix
@@ -26,13 +26,13 @@
 
 buildPythonPackage rec {
   pname = "certbot";
-  version = "1.29.0";
+  version = "1.31.0";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = "refs/tags/v${version}";
-    sha256 = "sha256-DFdXDFSqqkm4r59Kmd1wxcg2YePP3dI9squiW+iSmaU=";
+    sha256 = "sha256-JDhesUU6SQBEf0CG3vo1AhlRfGpltTEUmSqrpGIpptg=";
   };
 
   sourceRoot = "source/${pname}";