pythonPackages.botocore: 1.7.20 -> 1.7.43

This commit is contained in:
adisbladis 2017-11-11 00:54:23 +08:00
parent f6b6e8783d
commit 0286cc7220
No known key found for this signature in database
GPG key ID: ED58F95069B004F5
2 changed files with 47 additions and 33 deletions

View file

@ -0,0 +1,44 @@
{ buildPythonPackage
, fetchPypi
, dateutil
, jmespath
, docutils
, ordereddict
, simplejson
, mock
, nose
}:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "botocore";
version = "1.7.43";
src = fetchPypi {
inherit pname version;
sha256 = "0wyyj7sk7dh9v7i1g5jc5maqdadvbs4khi7srz0095cywkjqpysc";
};
propagatedBuildInputs = [
dateutil
jmespath
docutils
ordereddict
simplejson
];
checkInputs = [ mock nose ];
checkPhase = ''
nosetests -v
'';
# Network access
doCheck = false;
meta = {
homepage = https://github.com/boto/botocore;
license = "bsd";
description = "A low-level interface to a growing number of Amazon Web Services";
};
}

View file

@ -2066,39 +2066,7 @@ in {
};
};
botocore = buildPythonPackage rec {
name = "${pname}-${version}";
pname = "botocore";
version = "1.7.20";
src = fetchPypi {
inherit pname version;
sha256 = "16sy35bp9i2g9785l8jzcd4ddc2nydqs3wnkqwi36xx6l3bdbn13";
};
propagatedBuildInputs = with self; [
dateutil
jmespath
docutils
ordereddict
simplejson
];
checkInputs = with self; [ mock nose ];
checkPhase = ''
nosetests -v
'';
# Network access
doCheck = false;
meta = {
homepage = https://github.com/boto/botocore;
license = "bsd";
description = "A low-level interface to a growing number of Amazon Web Services";
};
};
botocore = callPackage ../development/python-modules/botocore { };
bottle = buildPythonPackage rec {
version = "0.12.11";
@ -8391,6 +8359,8 @@ in {
inherit (pkgs) glibcLocales;
};
s3transfer = callPackage ../development/python-modules/s3transfer { };
feedparser = buildPythonPackage (rec {
name = "feedparser-5.2.1";