python3Packages.livekit-api: 1.0.24 -> 1.1.0 (#488819)

This commit is contained in:
dotlambda
2026-02-11 06:09:46 +00:00
committed by GitHub
2 changed files with 8 additions and 7 deletions
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "livekit-api";
version = "1.0.24";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "livekit";
repo = "python-sdks";
tag = "rtc-v${version}";
hash = "sha256-XtjlKGhz/57NGJ95pKwBE1ylvVXulXsozpTpdbCL1Mk=";
tag = "api-v${version}";
hash = "sha256-Z9ZyzESPUR+j9s9LXSTDx3pB+bltbqTeb8WVKaKk80A=";
};
pypaBuildFlags = [ "livekit-api" ];
@@ -47,6 +47,7 @@ buildPythonPackage rec {
passthru.updateScript = gitUpdater { rev-prefix = "api-v"; };
meta = {
changelog = "https://github.com/livekit/python-sdks/releases/tag/${src.tag}";
description = "LiveKit real-time and server SDKs for Python";
homepage = "https://github.com/livekit/python-sdks/";
license = lib.licenses.asl20;
@@ -2,26 +2,26 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
hatchling,
protobuf,
gitUpdater,
}:
buildPythonPackage rec {
pname = "livekit-protocol";
version = "1.1.0";
version = "1.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "livekit";
repo = "python-sdks";
tag = "protocol-v${version}";
hash = "sha256-u89KM1Lio1gELIzwhmBJFCf1c29cfGu0WsMf8Vvsi8M=";
hash = "sha256-/QXjIz3q5dF6Y1CkyCP+3hWoXMGs7+eUgtehBJBF7LY=";
};
pypaBuildFlags = [ "livekit-protocol" ];
build-system = [ setuptools ];
build-system = [ hatchling ];
dependencies = [
protobuf