summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2018-04-25 21:36:13 -0400
committerDan Peebles <pumpkin@me.com>2018-04-25 21:36:15 -0400
commitca52152a9198ae42e894829f8f192d39ac173356 (patch)
tree05ff70c4d77a1e86ff3a28590a7e0e0c6e09b84a /pkgs
parent7673593c85623fa7065ea7ef56bcd0a50f2fbea1 (diff)
downloadnixpkgs-ca52152a9198ae42e894829f8f192d39ac173356.tar
nixpkgs-ca52152a9198ae42e894829f8f192d39ac173356.tar.gz
nixpkgs-ca52152a9198ae42e894829f8f192d39ac173356.tar.bz2
nixpkgs-ca52152a9198ae42e894829f8f192d39ac173356.tar.lz
nixpkgs-ca52152a9198ae42e894829f8f192d39ac173356.tar.xz
nixpkgs-ca52152a9198ae42e894829f8f192d39ac173356.tar.zst
nixpkgs-ca52152a9198ae42e894829f8f192d39ac173356.zip
boto{3,core}: {1.6.0,1.9.3} -> {1.7.9,1.10.9}
Yeah yeah, I want parallel glob expansion but you get what I mean.
These two packages like getting upgraded together so to minimize
incompatibilities I'm upgrading them both in the same commit.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/boto3/default.nix4
-rw-r--r--pkgs/development/python-modules/botocore/default.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/boto3/default.nix b/pkgs/development/python-modules/boto3/default.nix
index ccada6dd140..042ad9cf793 100644
--- a/pkgs/development/python-modules/boto3/default.nix
+++ b/pkgs/development/python-modules/boto3/default.nix
@@ -13,13 +13,13 @@
 
 buildPythonPackage rec {
   pname =  "boto3";
-  version = "1.6.0";
+  version = "1.7.9";
 
   src = fetchFromGitHub {
     owner = "boto";
     repo  = "boto3";
     rev   = version;
-    sha256 = "14d60wc5kff2gjkrm0yfz0179s0qg3f1qqldv8hnf37ny6yvfwn3";
+    sha256 = "0yqym19nlayjm1qlh6vvinmk5xw0zskil971n2v9s65ray7sn5lv";
   };
 
   propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
diff --git a/pkgs/development/python-modules/botocore/default.nix b/pkgs/development/python-modules/botocore/default.nix
index 5276fdb9329..cd9c5729611 100644
--- a/pkgs/development/python-modules/botocore/default.nix
+++ b/pkgs/development/python-modules/botocore/default.nix
@@ -12,11 +12,11 @@
 buildPythonPackage rec {
   name = "${pname}-${version}";
   pname = "botocore";
-  version = "1.9.3";
+  version = "1.10.9";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "d5b892ab86cd3e8d6cb570dd5275bf1c600cbbf9f07a40a22bcdd9023c0e844f";
+    sha256 = "19vlf2w05h9818hrhx8al4r9ngfhvhf2pxcwka9s7bc51qnhx4xh";
   };
 
   propagatedBuildInputs = [