Merge branch 'master' into current

This commit is contained in:
2025-10-11 08:40:55 +02:00
10 changed files with 25 additions and 18 deletions

View File

@@ -106,6 +106,8 @@ python.pkgs.buildPythonApplication rec {
''; '';
meta = with lib; { meta = with lib; {
# https://github.com/pytrainer/pytrainer/issues/280
broken = true;
homepage = "https://github.com/pytrainer/pytrainer"; homepage = "https://github.com/pytrainer/pytrainer";
description = "Application for logging and graphing sporting excursions"; description = "Application for logging and graphing sporting excursions";
mainProgram = "pytrainer"; mainProgram = "pytrainer";

View File

@@ -15,14 +15,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "aioamazondevices"; pname = "aioamazondevices";
version = "6.2.8"; version = "6.4.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "chemelli74"; owner = "chemelli74";
repo = "aioamazondevices"; repo = "aioamazondevices";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-73z4mWWBfJLewLFQvhSj7hIOfBzcwIVrNlyPPAk7PPM="; hash = "sha256-Lif2WNGdd4zLMzjpkZE0mdntC8sXzO5GF4nDLbjkFjo=";
}; };
build-system = [ poetry-core ]; build-system = [ poetry-core ];

View File

@@ -15,16 +15,21 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-melcloud"; pname = "python-melcloud";
version = "0.1.0"; version = "0.1.2";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "erwindouna"; owner = "erwindouna";
repo = "python-melcloud"; repo = "python-melcloud";
tag = version; tag = version;
hash = "sha256-1WFE8k16aDIp1S/WDHXVdUtQmISEoE8yQAn9nndmQWs="; hash = "sha256-ccc6mIYWZEBENbmkbAZ0cFXJFhFNBjXoU/VDe+ETgoQ=";
}; };
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "poetry-core>=1.5,<2.0" poetry-core
'';
build-system = [ poetry-core ]; build-system = [ poetry-core ];
pythonRemoveDeps = [ pythonRemoveDeps = [

View File

@@ -28,7 +28,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-roborock"; pname = "python-roborock";
version = "2.49.1"; version = "2.50.2";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.11"; disabled = pythonOlder "3.11";
@@ -37,7 +37,7 @@ buildPythonPackage rec {
owner = "Python-roborock"; owner = "Python-roborock";
repo = "python-roborock"; repo = "python-roborock";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-Fvrr+ILPy1vOPv1xw3TBJFBPLqz+6fmLTqTKWQ2IGY8="; hash = "sha256-66kSNkivq6BHnqIqx1INtdoysBJfCqV76yIAJiHmfxQ=";
}; };
postPatch = '' postPatch = ''

View File

@@ -12,14 +12,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyvesync"; pname = "pyvesync";
version = "3.0.0"; version = "3.1.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "webdjoe"; owner = "webdjoe";
repo = "pyvesync"; repo = "pyvesync";
tag = version; tag = version;
hash = "sha256-P5zIdc+lUmiBfibRiWIcwyoKqjw8F7XBj85Nwvawreo="; hash = "sha256-ZoEQbMV3ofE5pV7nbYOqzXq3/7a2pkDKx88894kzU7Y=";
}; };
build-system = [ setuptools ]; build-system = [ setuptools ];

View File

@@ -11,14 +11,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "sharkiq"; pname = "sharkiq";
version = "1.4.1"; version = "1.4.2";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "JeffResc"; owner = "JeffResc";
repo = "sharkiq"; repo = "sharkiq";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-AGulExhA+dmRbCjrLJngRee8yT+q/djyNe7toY1FeFg="; hash = "sha256-VhWqYYGZRsEPW4g9kQznr50ujGhLcTs+TS3atxsqCng=";
}; };
postPatch = '' postPatch = ''

View File

@@ -2,7 +2,7 @@
# Do not edit! # Do not edit!
{ {
version = "2025.10.1"; version = "2025.10.2";
components = { components = {
"3_day_blinds" = "3_day_blinds" =
ps: with ps; [ ps: with ps; [

View File

@@ -330,7 +330,7 @@ let
extraBuildInputs = extraPackages python.pkgs; extraBuildInputs = extraPackages python.pkgs;
# Don't forget to run update-component-packages.py after updating # Don't forget to run update-component-packages.py after updating
hassVersion = "2025.10.1"; hassVersion = "2025.10.2";
in in
python.pkgs.buildPythonApplication rec { python.pkgs.buildPythonApplication rec {
@@ -351,13 +351,13 @@ python.pkgs.buildPythonApplication rec {
owner = "home-assistant"; owner = "home-assistant";
repo = "core"; repo = "core";
tag = version; tag = version;
hash = "sha256-1C7Lg/pL1C+pUoo4RiL1TVECTqtEn6jnZ6muLohYPcw="; hash = "sha256-Y9StuiDaICKgqRrYc8d0i/Ey6R78J/5tvk/0qGVeZPQ=";
}; };
# Secondary source is pypi sdist for translations # Secondary source is pypi sdist for translations
sdist = fetchPypi { sdist = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-cVARVLg80wVkruSed7ywrnK+lutLWbMJL2MBIwAapBA="; hash = "sha256-tIUImUHGh8nrf0IuSOjSuV718B0SIS/oL6yLnyu8gOE=";
}; };
build-system = with python.pkgs; [ build-system = with python.pkgs; [

View File

@@ -8,7 +8,7 @@ buildPythonPackage rec {
# the frontend version corresponding to a specific home-assistant version can be found here # the frontend version corresponding to a specific home-assistant version can be found here
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
pname = "home-assistant-frontend"; pname = "home-assistant-frontend";
version = "20251001.0"; version = "20251001.2";
format = "wheel"; format = "wheel";
src = fetchPypi { src = fetchPypi {
@@ -16,7 +16,7 @@ buildPythonPackage rec {
pname = "home_assistant_frontend"; pname = "home_assistant_frontend";
dist = "py3"; dist = "py3";
python = "py3"; python = "py3";
hash = "sha256-gyipiEkT4AvTVvc/7pdBz9+2Oou5l9txOOboG/EQb80="; hash = "sha256-VDfj1dshILdTD/r6tuiImzYFMO3suytMQoFQzJfIeBQ=";
}; };
# there is nothing to strip in this package # there is nothing to strip in this package

View File

@@ -10,7 +10,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "homeassistant-stubs"; pname = "homeassistant-stubs";
version = "2025.10.1"; version = "2025.10.2";
pyproject = true; pyproject = true;
disabled = python.version != home-assistant.python.version; disabled = python.version != home-assistant.python.version;
@@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "KapJI"; owner = "KapJI";
repo = "homeassistant-stubs"; repo = "homeassistant-stubs";
tag = version; tag = version;
hash = "sha256-uLr6ZBasZNsCqD2DmOV/zestPW0lak9MSvvvUVWgUqQ="; hash = "sha256-iLQm7ERY5S9rMuk0RCLmGNxHiwIAAckuUvAjeKPvu1Q=";
}; };
build-system = [ build-system = [