{ buildPythonPackage , fetchPypi , dateutil , jmespath , docutils , ordereddict , simplejson , mock , nose , urllib3 }: buildPythonPackage rec { pname = "botocore"; version = "1.11.1"; src = fetchPypi { inherit pname version; sha256 = "5b2d2393c02a082d605dac13c1322c3c553a4d4cf23de7b48268ae7f4a105eb3"; }; propagatedBuildInputs = [ dateutil jmespath docutils ordereddict simplejson urllib3 ]; 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"; }; }