Merge pull request #90627 from flokli/awscli-boto-bump

awscli, boto3, botocore: bump to latest versions
This commit is contained in:
Florian Klink 2020-06-16 21:15:04 +02:00 committed by GitHub
commit 5815ecae38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View File

@ -13,11 +13,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "boto3"; pname = "boto3";
version = "1.13.24"; # N.B: if you change this, change botocore too version = "1.14.3"; # N.B: if you change this, change botocore too
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "5df1f3f84587b4d812f6f178031119b80920822b459bbb70ad49f431128655dc"; sha256 = "1qapj3hbbj116x7yca3m9ivl44iisrk0cppri9sk3b1mpv371a0v";
}; };
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ]; propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];

View File

@ -12,11 +12,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "botocore"; pname = "botocore";
version = "1.16.24"; # N.B: if you change this, change boto3 and awscli to a matching version version = "1.17.3"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "17bc71415186efb86a25dd674f78064cdd85139485967d5a0741c7b83d62cf5b"; sha256 = "0mrkkb7vc7jdxrr9gyg92i6ar801kpss53nfqp1di6xfi4jxkx0k";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -29,7 +29,7 @@ buildPythonPackage rec {
]; ];
postPatch = '' postPatch = ''
substituteInPlace setup.py --replace ",<0.16" "" substituteInPlace setup.py --replace "docutils>=0.10,<0.16" "docutils>=0.10"
''; '';
checkInputs = [ mock nose ]; checkInputs = [ mock nose ];

View File

@ -19,15 +19,15 @@ let
in with py.pkgs; buildPythonApplication rec { in with py.pkgs; buildPythonApplication rec {
pname = "awscli"; pname = "awscli";
version = "1.18.74"; # N.B: if you change this, change botocore to a matching version too version = "1.18.80"; # N.B: if you change this, change botocore to a matching version too
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1681945m9wxzqx4yv09zxskkbs2fd8rz1r3krjpwrpar3iiq1nmj"; sha256 = "0519rlc0m0888ag7s55lz516vsgif5pws6rzhmclbbw38g4wmb2k";
}; };
postPatch = '' postPatch = ''
substituteInPlace setup.py --replace ",<0.16" "" substituteInPlace setup.py --replace "docutils>=0.10,<0.16" "docutils>=0.10"
''; '';
# No tests included # No tests included