python3Packages.localstack-client: 1.36 -> 1.39

This commit is contained in:
Jonathan Ringer 2022-10-24 07:26:55 -07:00 committed by Jonathan Ringer
parent 6eeb9af177
commit 53e15a5f2f

View file

@ -7,14 +7,14 @@
buildPythonPackage rec {
pname = "localstack-client";
version = "1.36";
version = "1.39";
src = fetchFromGitHub {
owner = "localstack";
repo = "localstack-python-client";
# Request for proper tags: https://github.com/localstack/localstack-python-client/issues/38
rev = "92229c02c5b3cd0cef006e99c3d47db15aefcb4f";
sha256 = "sha256-pbDpe/5o4YU/2UIi8YbhzhIlXigOb/M2vjW9DKcIxoI=";
rev = "f1e538ad23700e5b1afe98720404f4801475e470";
sha256 = "sha256-MBXTiTzCwkduJPPRN7OKaWy2q9J8xCX/GGu09tyac3A=";
};
propagatedBuildInputs = [
@ -25,6 +25,8 @@ buildPythonPackage rec {
"localstack_client"
];
# All commands test `localstack` which is a downstream dependency
doCheck = false;
checkInputs = [
pytestCheckHook
];