about summary refs log tree commit diff
path: root/pkgs/development/python-modules/boto3
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2021-08-30 07:37:05 -0400
committerTim Steinbach <tim.steinbach@shopify.com>2021-09-16 09:37:34 -0400
commit91c1372f2fd656ed4291ec0c7c1affae29ae53ad (patch)
treec27089dceec7f7d1d741299952a86fd612f44f12 /pkgs/development/python-modules/boto3
parent6b43ab7b901e54fdce74e7e08652a3cf80144182 (diff)
python3Packages.boto3: 1.17.97 -> 1.18.31
Diffstat (limited to 'pkgs/development/python-modules/boto3')
-rw-r--r--pkgs/development/python-modules/boto3/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/boto3/default.nix b/pkgs/development/python-modules/boto3/default.nix
index 07a79a6a886b9..3ecc2034d4831 100644
--- a/pkgs/development/python-modules/boto3/default.nix
+++ b/pkgs/development/python-modules/boto3/default.nix
@@ -13,11 +13,11 @@
 
 buildPythonPackage rec {
   pname = "boto3";
-  version = "1.17.106"; # N.B: if you change this, change botocore and awscli to a matching version
+  version = "1.18.31"; # N.B: if you change this, change botocore and awscli to a matching version
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-wHQDeLkTylP1/A26kemadSxaMK57WKDF5U4+KmjfJsU=";
+    sha256 = "sha256-WURdDh1VyMlnVpfqQcmKDYIImkvjB26mDjqHy+lNwUE=";
   };
 
   propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];