3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #10929 from samuelrivas/boto-core-upgrade

botocore: 1.1.10 -> 1.2.0
This commit is contained in:
Domen Kožar 2015-11-10 08:35:46 +01:00
commit 79fbb8ea36
2 changed files with 28 additions and 1 deletions

View file

@ -13,7 +13,7 @@ pythonPackages.buildPythonPackage rec {
};
propagatedBuildInputs = [
pythonPackages.botocore
pythonPackages.botocore_1_1_10
pythonPackages.bcdoc
pythonPackages.six
pythonPackages.colorama

View file

@ -1621,6 +1621,33 @@ let
};
botocore = buildPythonPackage rec {
version = "1.2.0";
name = "botocore-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/b/botocore/${name}.tar.gz";
sha256 = "0wj98fsiwqzy0i0zh86fx15sgdjkwqi6crxig6b4kvrckl8bkwjr";
};
propagatedBuildInputs =
[ self.dateutil
self.requests
self.jmespath
];
buildInputs = [ self.docutils ];
meta = {
homepage = https://github.com/boto/botocore;
license = "bsd";
description = "A low-level interface to a growing number of Amazon Web Services";
};
};
botocore_1_1_10 = buildPythonPackage rec {
version = "1.1.10";
name = "botocore-${version}";