python: boto3: 1.9.250 -> 1.10.1

This commit is contained in:
Frederik Rietdijk 2019-10-24 08:47:26 +02:00
parent 1e7f7023c0
commit 12b3d043fe

View File

@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "boto3";
version = "1.9.250"; # N.B: if you change this, change botocore too
version = "1.10.1"; # N.B: if you change this, change botocore too
src = fetchPypi {
inherit pname version;
sha256 = "95f70eda4bd6756e297a7c89739571cbc5cd474620142e5cbe19810529d6ec1f";
sha256 = "2904bfb928116fea3a83247de6c3687eb9bf942d764e361f5574d5ac11be2ad3";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];