python312Packages.webrtc-models: init at 0.1.0, python312Packages.go2rtc-client: init at 0.0.1b2 (#352320)

This commit is contained in:
Fabian Affolter
2024-10-30 23:17:34 +01:00
committed by GitHub
3 changed files with 130 additions and 0 deletions
@@ -0,0 +1,67 @@
{
lib,
aiohttp,
aioresponses,
awesomeversion,
buildPythonPackage,
fetchFromGitHub,
hatchling,
mashumaro,
orjson,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
pythonOlder,
syrupy,
webrtc-models,
}:
buildPythonPackage rec {
pname = "go2rtc-client";
version = "0.0.1b2";
pyproject = true;
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "python-go2rtc-client";
rev = "refs/tags/${version}";
hash = "sha256-q1NDHauYy8C3tlIpt6J0iMj0TNtBv2j9aU/IE5CgBjg=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'version = "0.0.0"' 'version = "${version}"'
'';
pythonRelaxDeps = [ "orjson" ];
build-system = [ hatchling ];
dependencies = [
aiohttp
awesomeversion
mashumaro
orjson
webrtc-models
];
nativeCheckInputs = [
aioresponses
pytest-asyncio
pytest-cov-stub
pytestCheckHook
syrupy
];
pythonImportsCheck = [ "go2rtc_client" ];
meta = {
description = "Module for interacting with go2rtc";
homepage = "https://github.com/home-assistant-libs/python-go2rtc-client";
changelog = "https://github.com/home-assistant-libs/python-go2rtc-client/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ];
};
}
@@ -0,0 +1,59 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
mashumaro,
orjson,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
pythonOlder,
syrupy,
}:
buildPythonPackage rec {
pname = "webrtc-models";
version = "0.1.0";
pyproject = true;
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "python-webrtc-models";
rev = "refs/tags/${version}";
hash = "sha256-Wmz+P4FFJJZujWF0SR6HVERNNO7xSM1iCayg6tmVyso=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'version = "0.0.0"' 'version = "${version}"'
'';
pythonRelaxDeps = [ "orjson" ];
build-system = [ hatchling ];
dependencies = [
mashumaro
orjson
];
nativeCheckInputs = [
pytest-asyncio
pytest-cov-stub
pytestCheckHook
syrupy
];
pythonImportsCheck = [ "webrtc_models" ];
meta = {
description = "WebRTC models as Python dataclasses with mashumaro";
homepage = "https://github.com/home-assistant-libs/python-webrtc-models";
changelog = "https://github.com/home-assistant-libs/python-webrtc-models/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
+4
View File
@@ -5164,6 +5164,8 @@ self: super: with self; {
gnureadline = callPackage ../development/python-modules/gnureadline { };
go2rtc-client = callPackage ../development/python-modules/go2rtc-client { };
goalzero = callPackage ../development/python-modules/goalzero { };
gocardless-pro = callPackage ../development/python-modules/gocardless-pro { };
@@ -17532,6 +17534,8 @@ self: super: with self; {
webob = callPackage ../development/python-modules/webob { };
webrtc-models = callPackage ../development/python-modules/webrtc-models { };
webrtc-noise-gain = callPackage ../development/python-modules/webrtc-noise-gain { };
webrtcvad = callPackage ../development/python-modules/webrtcvad { };