botocore: 1.12.48 -> 1.12.62

boto3: 1.9.36 -> 1.9.62
awscli: 1.16.72

I update all three of these at a time because they rely on each other
and get annoyed when such changes are non-atomic. Also added a note to
the packages telling people that this is needed. I tested awscli and the
libraries against a real account.
This commit is contained in:
Dan Peebles
2018-12-10 16:19:05 -05:00
parent 7d216be655
commit 828547556e
3 changed files with 6 additions and 12 deletions

View File

@@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "boto3";
version = "1.9.36";
version = "1.9.62"; # N.B: if you change this, change botocore too
src = fetchPypi {
inherit pname version;
sha256 = "2a9f3809b480803c1b1f28a19c554f1e1ceafd8db994a4236a0843b999ee6c56";
sha256 = "0rf3ik4bqr0qab2648rcaahycr2sih257ngz8brizyfln0lk1sg9";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];