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