44 lines
707 B
Nix
44 lines
707 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, dateutil
|
|
, jmespath
|
|
, docutils
|
|
, ordereddict
|
|
, simplejson
|
|
, mock
|
|
, nose
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "botocore";
|
|
version = "1.10.65";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "35f626029a6b17bfd503ce3379b121606e3f965edcab2612bc75ce8603fdf08c";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|