{ buildPythonPackage , fetchPypi , dateutil , jmespath , docutils , ordereddict , simplejson , mock , nose , urllib3 }: buildPythonPackage rec { pname = "botocore"; version = "1.13.1"; # N.B: if you change this, change boto3 and awscli to a matching version src = fetchPypi { inherit pname version; sha256 = "acceec0b79df7e5f8b15eab3033f6a7c7f69d0bc27aa01d65aa5ba4d90742787"; }; outputs = [ "out" "dev" ]; 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"; }; }