0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-12 05:16:25 +03:00

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