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