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