python: botocore: 1.12.42 -> 1.12.48

This commit is contained in:
Frederik Rietdijk 2018-11-20 11:58:35 +01:00
parent 6119a9a5ba
commit ab12541888

View File

@ -7,15 +7,16 @@
, simplejson , simplejson
, mock , mock
, nose , nose
, urllib3
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "botocore"; pname = "botocore";
version = "1.12.42"; version = "1.12.48";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0e495bcf2e474b82da7938b35ad2f71e28384c246b47ca131779f736621da504"; sha256 = "7140e51ab0a7aa3b7fa9cf5fefa663e0cd097098fcbd51b12ff8884c8d967754";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -24,6 +25,7 @@ buildPythonPackage rec {
docutils docutils
ordereddict ordereddict
simplejson simplejson
urllib3
]; ];
checkInputs = [ mock nose ]; checkInputs = [ mock nose ];