Files
Fabian Affolter 9097373d6a python3Packages.localstack-client: 2.11 -> 2.12
This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:34 +02:00

50 lines
994 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
boto3,
pytestCheckHook,
# use for testing promoted localstack
pkgs,
}:
buildPythonPackage rec {
pname = "localstack-client";
version = "2.12";
format = "setuptools";
src = fetchPypi {
pname = "localstack_client";
inherit version;
hash = "sha256-27mHEv0siGnV3+16LKAGuVx3UP6aQ68SPvBU78fn67Q=";
};
propagatedBuildInputs = [ boto3 ];
pythonImportsCheck = [ "localstack_client" ];
# All commands test `localstack` which is a downstream dependency
doCheck = false;
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# Has trouble creating a socket
"test_session"
];
# For tests
__darwinAllowLocalNetworking = true;
passthru.tests = {
inherit (pkgs) localstack;
};
meta = {
description = "Lightweight Python client for LocalStack";
homepage = "https://github.com/localstack/localstack-python-client";
license = lib.licenses.asl20;
maintainers = [ ];
};
}