d1994ebd8a
I upgrade these all at once because they depend on one another and often dislike being upgraded individually. So let's make a single atomic commit!
44 lines
695 B
Nix
44 lines
695 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, dateutil
|
|
, jmespath
|
|
, docutils
|
|
, ordereddict
|
|
, simplejson
|
|
, mock
|
|
, nose
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "botocore";
|
|
version = "1.10.48";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1432drc7482nwrppwkk1i6ars3wz9w2g9rsxkz5nlxmyf9qm260j";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|