about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2021-03-11 08:27:56 -0500
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2021-03-11 16:20:37 -0500
commitba3b293272f862c86263ac7b168d866978792edd (patch)
treec4e4de9abe48a2ecfcf894dc4e175df602442ed0 /pkgs
parent50271bfa765729d9d3020f8dccf9062e013613ab (diff)
python3Packages.boto3: 1.17.24 -> 1.17.25
Diffstat (limited to 'pkgs')
-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 ea33a13dc368c..b8d184a058156 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.24"; # N.B: if you change this, change botocore and awscli to a matching version
+  version = "1.17.25"; # N.B: if you change this, change botocore and awscli to a matching version
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-v0oyHafb4MWiA4D/n2qKTi4TXnKkA0iJASKhlzaLRCE=";
+    sha256 = "sha256-Jz6WriuVpgNqTDVH52onCxerdhzHYFOCPJ42HSaCE+8=";
   };
 
   propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];