Skip to content

Commit

Permalink
awscli: upgrade to 1.14.22
Browse files Browse the repository at this point in the history
botocore: upgrade to 1.8.26
boto3: upgrade to 1.4.8
s3transfer: upgrade to 0.1.12
  • Loading branch information
rbvermaa committed Jan 18, 2018
1 parent ef5a429 commit 924ceda
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -774,12 +774,12 @@ in {
in buildPythonPackage rec {
name = "${pname}-${version}";
pname = "awscli";
version = "1.11.108";
version = "1.14.22";
namePrefix = "";

src = fetchPypi {
inherit pname version;
sha256 = "1wz76hkljc25zzfa2l5jv0mbr5vx6d9ixq4sq0p3zf3l45ql6mdf";
sha256 = "13pivyyivwb3xy0l45083gcman2b0xiv00fl9ww0m8jccgxsdzd0";
};

# No tests included
Expand Down Expand Up @@ -2106,13 +2106,13 @@ in {

boto3 = buildPythonPackage rec {
name = "boto3-${version}";
version = "1.4.4";
version = "1.4.8";

src = pkgs.fetchFromGitHub {
owner = "boto";
repo = "boto3";
rev = version;
sha256 = "1zngj38a2dmc02p3ha9crzv9k682f0zgyyfx1bgg8hwwrnggikwl";
sha256 = "11ysd7a9l5y98q7b7az56phsj2m7w90abf4jabwrknp2c43sq9bi";
};

propagatedBuildInputs = [ self.botocore self.jmespath self.s3transfer ] ++
Expand All @@ -2127,9 +2127,6 @@ in {
runHook postCheck
'';

# Network access
doCheck = false;

meta = {
homepage = https://github.com/boto/boto3;
license = stdenv.lib.licenses.asl20;
Expand All @@ -2145,11 +2142,11 @@ in {
botocore = buildPythonPackage rec {
name = "${pname}-${version}";
pname = "botocore";
version = "1.5.71";
version = "1.8.26";

src = fetchPypi {
inherit pname version;
sha256 = "1fgg28halsy4g43wjpkbd6l0wqiwyzkd4zjrzbbyzw4dxbsf3xfm";
sha256 = "09j3b80l401hwc3ha0s2c2qq6z45x846an09ybc9y8cb1ky0kdlv";
};

propagatedBuildInputs =
Expand Down Expand Up @@ -19380,12 +19377,12 @@ in {
};

s3transfer = buildPythonPackage rec {
version = "0.1.10";
version = "0.1.12";
name = "s3transfer-${version}";

src = pkgs.fetchurl {
url = "mirror://pypi/s/s3transfer/${name}.tar.gz";
sha256 = "1h8g9bknvxflxkpbnxyfxmk8pvgykbbk9ljdvhqh6z4vjc2926ms";
sha256 = "07hjj1cy62sc3rh5lhna9mhylp7h7aak4v6mf6809q4nc8j1p28h";
};

foo = 1;
Expand Down

1 comment on commit 924ceda

@risicle
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have a question - what was the story behind this moderately major bump getting merged to the stable branch? I'm finding the history quite hard to follow.

Please sign in to comment.