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-04-12 14:01:10 -0400
committerTim Steinbach <tim@nequissimus.com>2021-04-12 14:01:10 -0400
commitf86f230d63935bf98bd72e0c32a76b905bbc2a09 (patch)
treea8f8048ca8859397bca15b7835c0b652b695a9ca /pkgs/development/python-modules/boto3
parente05657cef5a6af5343245d250df1669e28ef688c (diff)
python3Packages.boto3: 1.17.46 -> 1.17.49
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 9fdd4f35d1b21..b7988d47e8d42 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.46"; # N.B: if you change this, change botocore and awscli to a matching version
+  version = "1.17.49"; # N.B: if you change this, change botocore and awscli to a matching version
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-Xe4Vv5YepYTWgfrkLFADTIOXF+dFTD2pDLV6bFLpdTI=";
+    sha256 = "sha256-pIITXDD6B+r0NwMU3Q+0kRciKiZtBCOyB1rtODXtHwQ=";
   };
 
   propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];