45 lines
738 B
Nix
45 lines
738 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, dateutil
|
|
, jmespath
|
|
, docutils
|
|
, ordereddict
|
|
, simplejson
|
|
, mock
|
|
, nose
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "botocore";
|
|
version = "1.8.45";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "8f91b648a216dc945783d1539c013fc08a9e65ecc4fc5aae017bdd5961fd3468";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|