Files
nixpkgs/pkgs/development/python-modules/botocore/default.nix
T

44 lines
707 B
Nix
Raw Normal View History

2017-11-11 00:54:23 +08:00
{ buildPythonPackage
, fetchPypi
, dateutil
, jmespath
, docutils
, ordereddict
, simplejson
, mock
, nose
}:
buildPythonPackage rec {
pname = "botocore";
2018-08-30 19:00:02 +02:00
version = "1.10.84";
2017-11-11 00:54:23 +08:00
src = fetchPypi {
inherit pname version;
2018-08-30 19:00:02 +02:00
sha256 = "d3e4b5a2c903ea30d19d41ea2f65d0e51dce54f4f4c4dfd6ecd7b04f240844a8";
2017-11-11 00:54:23 +08:00
};
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";
};
}