python: boto3: 1.7.84 -> 1.9.36

This commit is contained in:
Frederik Rietdijk 2018-11-29 09:28:12 +01:00
parent 3db122cd9f
commit 3685806808

View File

@ -1,6 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchPypi
, botocore , botocore
, jmespath , jmespath
, s3transfer , s3transfer
@ -13,13 +13,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "boto3"; pname = "boto3";
version = "1.7.84"; version = "1.9.36";
src = fetchFromGitHub { src = fetchPypi {
owner = "boto"; inherit pname version;
repo = "boto3"; sha256 = "2a9f3809b480803c1b1f28a19c554f1e1ceafd8db994a4236a0843b999ee6c56";
rev = version;
sha256 = "0d9kqjqmnn53p1xpmdbbjxcxv2482yx3vjhxw8izp0mpq58i5c14";
}; };
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ]; propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
@ -47,4 +45,4 @@ buildPythonPackage rec {
services like Amazon S3 and Amazon EC2. services like Amazon S3 and Amazon EC2.
''; '';
}; };
} }