feat: 2025.12.0 -> 2026.2.0

This commit is contained in:
CronyAkatsuki 2026-02-03 20:01:18 +01:00
parent ae27bb6f88
commit 1aa6072ee6
2 changed files with 7 additions and 4 deletions

View file

@ -2,15 +2,15 @@
with pkgs.python3Packages; with pkgs.python3Packages;
buildPythonPackage { buildPythonPackage {
pname = "lnxlink"; pname = "lnxlink";
version = "2025.12.0"; version = "2026.2.0";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
src = pkgs.fetchFromGitHub { src = pkgs.fetchFromGitHub {
owner = "bkbilly"; owner = "bkbilly";
repo = "lnxlink"; repo = "lnxlink";
rev = "2025.12.0"; rev = "2026.2.0";
sha256 = "sha256-n3/1oVioNkOq8OdPA+iLZ1KE251LzuAW+clPA3W0+Is="; sha256 = "sha256-PyonUBCeEiXQWsW9v5F3XiQE30xPOkRJTNmtaktg0Sw=";
}; };
patches = [./fix.patch]; patches = [./fix.patch];
@ -31,6 +31,7 @@ with pkgs.python3Packages;
paho-mqtt paho-mqtt
psutil psutil
requests requests
beaupy
# Module dependencies # Module dependencies
pygobject3 pygobject3

View file

@ -11,7 +11,8 @@
"inotify>=0.2.10", "inotify>=0.2.10",
"jeepney>=0.9.0", "jeepney>=0.9.0",
"aiohttp>=3.9.0", "aiohttp>=3.9.0",
- "asyncio>=3.4.3" - "asyncio>=3.4.3",
"beaupy>=3.10.0"
] ]
[project.urls] [project.urls]
@ -22,6 +23,7 @@
PyYAML>=6.0.1 PyYAML>=6.0.1
aiohttp>=3.9.0 aiohttp>=3.9.0
-asyncio>=3.4.3 -asyncio>=3.4.3
beaupy>=3.10.0
distro>=1.9.0 distro>=1.9.0
inotify>=0.2.10 inotify>=0.2.10
jeepney>=0.9.0 jeepney>=0.9.0