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:
commit
79fbb8ea36
|
@ -13,7 +13,7 @@ pythonPackages.buildPythonPackage rec {
|
|||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pythonPackages.botocore
|
||||
pythonPackages.botocore_1_1_10
|
||||
pythonPackages.bcdoc
|
||||
pythonPackages.six
|
||||
pythonPackages.colorama
|
||||
|
|
|
@ -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}";
|
||||
|
||||
|
|
Loading…
Reference in a new issue