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