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-03-10 09:36:34 -0500
committerTim Steinbach <tim@nequissimus.com>2021-03-10 09:36:34 -0500
commit9030d52dacdb1a069e7d92d8772ca89f6747ce0d (patch)
tree530edba228af4b011a10034fe30bbdc1d596a8c9 /pkgs/development/python-modules/boto3
parent91485ba756e0890dcbb3cf9f903bffaa8e021ec3 (diff)
python3Packages.boto3: 1.17.22 -> 1.17.24
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 32b3bfc4b8387..ea33a13dc368c 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.22"; # N.B: if you change this, change botocore and awscli to a matching version
+  version = "1.17.24"; # N.B: if you change this, change botocore and awscli to a matching version
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-Thd8ndSsRdnkGGfPt0f0yYXWsF/xRjesWGGmDaqVx8E=";
+    sha256 = "sha256-v0oyHafb4MWiA4D/n2qKTi4TXnKkA0iJASKhlzaLRCE=";
   };
 
   propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];