nixpkgs/pkgs/development/python-modules/botocore/default.nix
Dan Peebles 6b81baed99 botocore, boto3, awscli: 1.10.48->1.10.57, 1.7.48->1.10.57, 1.15.49->1.15.48
As usual, I update all three of these at once because updating any of them
individually will break one or more of them.
2018-07-13 10:11:31 -04:00

44 lines
695 B
Nix

{ buildPythonPackage
, fetchPypi
, dateutil
, jmespath
, docutils
, ordereddict
, simplejson
, mock
, nose
}:
buildPythonPackage rec {
pname = "botocore";
version = "1.10.57";
src = fetchPypi {
inherit pname version;
sha256 = "0mif7c12643hac6zxq89gv0wjf4r3vqlmm01bm68psljaj40jnpi";
};
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";
};
}