python312Packages.botocore: 1.35.99 -> 1.36.21

Changelog: https://github.com/boto/botocore/blob/1.36.21/CHANGELOG.rst

Nick Cao e26ff7f8 6989dcde

+10 -8
+10 -8
pkgs/development/python-modules/botocore/default.nix
··· 2 lib, 3 awscrt, 4 buildPythonPackage, 5 - fetchPypi, 6 7 # build-system 8 setuptools, ··· 19 20 buildPythonPackage rec { 21 pname = "botocore"; 22 - version = "1.35.99"; # N.B: if you change this, change boto3 and awscli to a matching version 23 pyproject = true; 24 25 - src = fetchPypi { 26 - inherit pname version; 27 - hash = "sha256-HqtE6WnDnF89mjEEoINsJHFVeaRV8Ss5eaMdfN5Rs8M="; 28 }; 29 30 - pythonRelaxDeps = [ "urllib3" ]; 31 - 32 - build-system = [ setuptools ]; 33 34 dependencies = [ 35 jmespath
··· 2 lib, 3 awscrt, 4 buildPythonPackage, 5 + fetchFromGitHub, 6 7 # build-system 8 setuptools, ··· 19 20 buildPythonPackage rec { 21 pname = "botocore"; 22 + version = "1.36.21"; # N.B: if you change this, change boto3 and awscli to a matching version 23 pyproject = true; 24 25 + src = fetchFromGitHub { 26 + owner = "boto"; 27 + repo = "botocore"; 28 + tag = version; 29 + hash = "sha256-wk3KCRagEju4ywJfoBR8/4dH3xYgzGgaSHavDYCd5XY="; 30 }; 31 32 + build-system = [ 33 + setuptools 34 + ]; 35 36 dependencies = [ 37 jmespath