botocore: 1.16.24 -> 1.17.3

This commit is contained in:
Florian Klink 2020-06-16 17:14:30 +02:00
parent 5d6f47c223
commit 1c7936fb2c

View File

@ -12,11 +12,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "botocore"; pname = "botocore";
version = "1.16.24"; # N.B: if you change this, change boto3 and awscli to a matching version version = "1.17.3"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "17bc71415186efb86a25dd674f78064cdd85139485967d5a0741c7b83d62cf5b"; sha256 = "0mrkkb7vc7jdxrr9gyg92i6ar801kpss53nfqp1di6xfi4jxkx0k";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -29,7 +29,7 @@ buildPythonPackage rec {
]; ];
postPatch = '' postPatch = ''
substituteInPlace setup.py --replace ",<0.16" "" substituteInPlace setup.py --replace "docutils>=0.10,<0.16" "docutils>=0.10"
''; '';
checkInputs = [ mock nose ]; checkInputs = [ mock nose ];