about summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2018-12-10 16:19:05 -0500
committerDan Peebles <pumpkin@me.com>2018-12-10 16:19:05 -0500
commit828547556e39191eb1d8b3cb60e0cd03fd56329e (patch)
tree9c7ad89de16568e6ab8372306107db2e6c2c609d /pkgs/tools/admin
parent7d216be655d7beb448ecbe9b53123d1c7b696d40 (diff)
downloadnixlib-828547556e39191eb1d8b3cb60e0cd03fd56329e.tar
nixlib-828547556e39191eb1d8b3cb60e0cd03fd56329e.tar.gz
nixlib-828547556e39191eb1d8b3cb60e0cd03fd56329e.tar.bz2
nixlib-828547556e39191eb1d8b3cb60e0cd03fd56329e.tar.lz
nixlib-828547556e39191eb1d8b3cb60e0cd03fd56329e.tar.xz
nixlib-828547556e39191eb1d8b3cb60e0cd03fd56329e.tar.zst
nixlib-828547556e39191eb1d8b3cb60e0cd03fd56329e.zip
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.
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/awscli/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/tools/admin/awscli/default.nix b/pkgs/tools/admin/awscli/default.nix
index 052f4abb8af2..ee17922cb782 100644
--- a/pkgs/tools/admin/awscli/default.nix
+++ b/pkgs/tools/admin/awscli/default.nix
@@ -19,11 +19,11 @@ let
 
 in py.pkgs.buildPythonApplication rec {
   pname = "awscli";
-  version = "1.16.60";
+  version = "1.16.72"; # N.B: if you change this, change botocore to a matching version too
 
   src = py.pkgs.fetchPypi {
     inherit pname version;
-    sha256 = "25bcc6cf2304356a78429671999857ff33f88761d81bcee63463a86a6780dcdc";
+    sha256 = "1ld4a6yxnh0v96fjjp8wjf7zvx41grl57mqg92p6zbfssr2jbqfv";
   };
 
   # No tests included
@@ -42,12 +42,6 @@ in py.pkgs.buildPythonApplication rec {
     less
   ];
 
-  postPatch = ''
-    for i in {py,cfg}; do
-      substituteInPlace setup.$i --replace "botocore==1.12.50" "botocore>=1.11,<1.13"
-    done
-  '';
-
   postInstall = ''
     mkdir -p $out/etc/bash_completion.d
     echo "complete -C $out/bin/aws_completer aws" > $out/etc/bash_completion.d/awscli