2017-11-10 16:54:23 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, dateutil
|
|
|
|
, jmespath
|
|
|
|
, docutils
|
|
|
|
, ordereddict
|
|
|
|
, simplejson
|
|
|
|
, mock
|
|
|
|
, nose
|
2018-11-20 10:58:35 +00:00
|
|
|
, urllib3
|
2017-11-10 16:54:23 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "botocore";
|
2021-03-29 14:20:15 +01:00
|
|
|
version = "1.20.39"; # N.B: if you change this, change boto3 and awscli to a matching version
|
2017-11-10 16:54:23 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-29 14:20:15 +01:00
|
|
|
sha256 = "sha256-KFBtI/+pq/VmbCyQnH7cg6ERLNRP506xpJYN9WFTHpg=";
|
2017-11-10 16:54:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
dateutil
|
|
|
|
jmespath
|
|
|
|
docutils
|
|
|
|
ordereddict
|
|
|
|
simplejson
|
2018-11-20 10:58:35 +00:00
|
|
|
urllib3
|
2017-11-10 16:54:23 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [ mock nose ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
nosetests -v
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Network access
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/boto/botocore";
|
2017-11-10 16:54:23 +00:00
|
|
|
license = "bsd";
|
|
|
|
description = "A low-level interface to a growing number of Amazon Web Services";
|
|
|
|
};
|
|
|
|
}
|