12 Commits

Author SHA1 Message Date
2658d73a2b Merge branch 'master' into current 2025-10-11 08:40:55 +02:00
dotlambda
3627919440 pytrainer: mark broken (#450356) 2025-10-11 06:31:15 +00:00
dotlambda
36d549c052 home-assistant: 2025.10.1 -> 2025.10.2 (#450890) 2025-10-11 06:30:55 +00:00
Robert Schütz
75d010dc8f python3Packages.homeassistant-stubs: 2025.10.1 -> 2025.10.2
Diff: https://github.com/KapJI/homeassistant-stubs/compare/2025.10.1...2025.10.2

Changelog: https://github.com/KapJI/homeassistant-stubs/releases/tag/2025.10.2
2025-10-10 22:48:15 -07:00
Robert Schütz
2eaf1d0272 home-assistant: 2025.10.1 -> 2025.10.2
Diff: https://github.com/home-assistant/core/compare/2025.10.1...2025.10.2

Changelog: https://github.com/home-assistant/core/releases/tag/2025.10.2
2025-10-10 22:48:15 -07:00
Robert Schütz
d72cdb6226 home-assistant.frontend: 20251001.0 -> 20251001.2
Changelog: https://github.com/home-assistant/frontend/releases/tag/20251001.2
2025-10-10 22:48:15 -07:00
Robert Schütz
e0df0d2541 python3Packages.sharkiq: 1.4.1 -> 1.4.2
Diff: https://github.com/JeffResc/sharkiq/compare/v1.4.1...v1.4.2

Changelog: https://github.com/JeffResc/sharkiq/releases/tag/v1.4.2
2025-10-10 22:48:15 -07:00
Fabian Affolter
9bd29aa1c3 python313Packages.pyvesync: 3.0.0 -> 3.1.0
Diff: https://github.com/webdjoe/pyvesync/compare/3.0.0...3.1.0

Changelog: https://github.com/webdjoe/pyvesync/releases/tag/3.1.0
2025-10-10 22:48:15 -07:00
Robert Schütz
ee36bc520d python3Packages.python-roborock: 2.49.1 -> 2.50.2
Diff: https://github.com/Python-roborock/python-roborock/compare/v2.49.1...v2.50.2

Changelog: https://github.com/Python-roborock/python-roborock/blob/v2.50.2/CHANGELOG.md
2025-10-10 22:48:15 -07:00
Robert Schütz
7e518c783d python3Packages.python-melcloud: 0.1.0 -> 0.1.2
Diff: https://github.com/erwindouna/python-melcloud/compare/0.1.0...0.1.2

Changelog: https://github.com/erwindouna/python-melcloud/blob/0.1.2/CHANGELOG.md
2025-10-10 22:48:15 -07:00
Fabian Affolter
bdf9125a2b python313Packages.aioamazondevices: 6.2.8 -> 6.4.0
Diff: https://github.com/chemelli74/aioamazondevices/compare/v6.2.8...v6.4.0

Changelog: https://github.com/chemelli74/aioamazondevices/blob/v6.4.0/CHANGELOG.md
2025-10-10 20:50:20 -07:00
Robert Schütz
2528b7f9c8 pytrainer: mark broken
It fails to run with

    TypeError: MetaData.reflect() missing 1 required positional argument: 'bind'
2025-10-09 09:25:11 -07:00
10 changed files with 25 additions and 18 deletions

View File

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

View File

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

View File

@@ -15,16 +15,21 @@
buildPythonPackage rec {
pname = "python-melcloud";
version = "0.1.0";
version = "0.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "erwindouna";
repo = "python-melcloud";
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 ];
pythonRemoveDeps = [

View File

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

View File

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

View File

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

View File

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

View File

@@ -330,7 +330,7 @@ let
extraBuildInputs = extraPackages python.pkgs;
# Don't forget to run update-component-packages.py after updating
hassVersion = "2025.10.1";
hassVersion = "2025.10.2";
in
python.pkgs.buildPythonApplication rec {
@@ -351,13 +351,13 @@ python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
tag = version;
hash = "sha256-1C7Lg/pL1C+pUoo4RiL1TVECTqtEn6jnZ6muLohYPcw=";
hash = "sha256-Y9StuiDaICKgqRrYc8d0i/Ey6R78J/5tvk/0qGVeZPQ=";
};
# Secondary source is pypi sdist for translations
sdist = fetchPypi {
inherit pname version;
hash = "sha256-cVARVLg80wVkruSed7ywrnK+lutLWbMJL2MBIwAapBA=";
hash = "sha256-tIUImUHGh8nrf0IuSOjSuV718B0SIS/oL6yLnyu8gOE=";
};
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
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
pname = "home-assistant-frontend";
version = "20251001.0";
version = "20251001.2";
format = "wheel";
src = fetchPypi {
@@ -16,7 +16,7 @@ buildPythonPackage rec {
pname = "home_assistant_frontend";
dist = "py3";
python = "py3";
hash = "sha256-gyipiEkT4AvTVvc/7pdBz9+2Oou5l9txOOboG/EQb80=";
hash = "sha256-VDfj1dshILdTD/r6tuiImzYFMO3suytMQoFQzJfIeBQ=";
};
# there is nothing to strip in this package

View File

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