home-assistant: 2024.12.4 -> 2024.12.5 (#366805)

authored by Martin Weinelt and committed by GitHub 95b03b02 78e52d7a

+31 -29
+4 -4
pkgs/development/python-modules/fjaraskupan/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "fjaraskupan"; 14 - version = "2.3.0"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.8"; ··· 19 src = fetchFromGitHub { 20 owner = "elupus"; 21 repo = "fjaraskupan"; 22 - rev = "refs/tags/${version}"; 23 - hash = "sha256-3jw42lsCwNkFptMNpnhtbrPIkZP/8lUCcMigzq8Hbc4="; 24 }; 25 26 - nativeBuildInputs = [ setuptools ]; 27 28 dependencies = [ bleak ]; 29
··· 11 12 buildPythonPackage rec { 13 pname = "fjaraskupan"; 14 + version = "2.3.2"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.8"; ··· 19 src = fetchFromGitHub { 20 owner = "elupus"; 21 repo = "fjaraskupan"; 22 + tag = version; 23 + hash = "sha256-IKi2kaypwHdK9w+FZlWrreUXBgBgg4y3D8bSJhKHSYo="; 24 }; 25 26 + build-system = [ setuptools ]; 27 28 dependencies = [ bleak ]; 29
+7 -7
pkgs/development/python-modules/freebox-api/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "freebox-api"; 14 - version = "1.1.0"; 15 - format = "pyproject"; 16 17 disabled = pythonOlder "3.8"; 18 19 src = fetchFromGitHub { 20 owner = "hacf-fr"; 21 - repo = pname; 22 - rev = "refs/tags/v${version}"; 23 - hash = "sha256-3i9I2RRRxLgyfzegnqjO4g+ad1v4phx6xa8HpWP1cck="; 24 }; 25 26 - nativeBuildInputs = [ 27 poetry-core 28 ]; 29 30 pythonRelaxDeps = [ "urllib3" ]; 31 32 - propagatedBuildInputs = [ 33 aiohttp 34 urllib3 35 ];
··· 11 12 buildPythonPackage rec { 13 pname = "freebox-api"; 14 + version = "1.2.1"; 15 + pyproject = true; 16 17 disabled = pythonOlder "3.8"; 18 19 src = fetchFromGitHub { 20 owner = "hacf-fr"; 21 + repo = "freebox-api"; 22 + tag = "v${version}"; 23 + hash = "sha256-a4d7fjSPBcVlCkY8y7dTLPW949YUg9wD62kQxJRxp0I="; 24 }; 25 26 + build-system = [ 27 poetry-core 28 ]; 29 30 pythonRelaxDeps = [ "urllib3" ]; 31 32 + dependencies = [ 33 aiohttp 34 urllib3 35 ];
+3 -3
pkgs/development/python-modules/gardena-bluetooth/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "gardena-bluetooth"; 17 - version = "1.4.4"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.10"; ··· 22 src = fetchFromGitHub { 23 owner = "elupus"; 24 repo = "gardena-bluetooth"; 25 - rev = "refs/tags/${version}"; 26 - hash = "sha256-BV4chGkVp9H7gJQGKQZ0e4IiizMjCbDAU5MMf7hS9mE="; 27 }; 28 29 build-system = [ poetry-core ];
··· 14 15 buildPythonPackage rec { 16 pname = "gardena-bluetooth"; 17 + version = "1.5.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.10"; ··· 22 src = fetchFromGitHub { 23 owner = "elupus"; 24 repo = "gardena-bluetooth"; 25 + tag = version; 26 + hash = "sha256-U/Spy9Jc86BJ4AokqdWFRlZ4nOHIFTQ8aphK/xhofWg="; 27 }; 28 29 build-system = [ poetry-core ];
+4 -4
pkgs/development/python-modules/nice-go/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "nice-go"; 20 - version = "0.3.10"; 21 pyproject = true; 22 23 src = fetchFromGitHub { 24 owner = "IceBotYT"; 25 repo = "nice-go"; 26 - rev = "refs/tags/${version}"; 27 - hash = "sha256-LPH6U0D/JSi8zASlirfkNgfWOh/ArPHoccniNjy2hJc="; 28 }; 29 30 build-system = [ poetry-core ]; ··· 50 ]; 51 52 meta = { 53 - changelog = "https://github.com/IceBotYT/nice-go/blob/${src.rev}/CHANGELOG.md"; 54 description = "Control various Nice access control products"; 55 homepage = "https://github.com/IceBotYT/nice-go"; 56 license = lib.licenses.mit;
··· 17 18 buildPythonPackage rec { 19 pname = "nice-go"; 20 + version = "1.0.0"; 21 pyproject = true; 22 23 src = fetchFromGitHub { 24 owner = "IceBotYT"; 25 repo = "nice-go"; 26 + tag = version; 27 + hash = "sha256-u4AhFYhRYwcAGUrXhUgP+SgR0aoric864qSyWhc7Gmo="; 28 }; 29 30 build-system = [ poetry-core ]; ··· 50 ]; 51 52 meta = { 53 + changelog = "https://github.com/IceBotYT/nice-go/blob/${src.tag}/CHANGELOG.md"; 54 description = "Control various Nice access control products"; 55 homepage = "https://github.com/IceBotYT/nice-go"; 56 license = lib.licenses.mit;
+2 -2
pkgs/development/python-modules/pyoverkiz/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "pyoverkiz"; 20 - version = "1.15.2"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.10"; ··· 26 owner = "iMicknl"; 27 repo = "python-overkiz-api"; 28 tag = "v${version}"; 29 - hash = "sha256-6KDtNXFlzWY27JeV9uwSu9pzjiZAmwLyYmg0KR8QudQ="; 30 }; 31 32 build-system = [ poetry-core ];
··· 17 18 buildPythonPackage rec { 19 pname = "pyoverkiz"; 20 + version = "1.15.3"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.10"; ··· 26 owner = "iMicknl"; 27 repo = "python-overkiz-api"; 28 tag = "v${version}"; 29 + hash = "sha256-B+dajZ7tjG96X5o/bTOMENyWj6tnZXiWRFCIdSdshy0="; 30 }; 31 32 build-system = [ poetry-core ];
+5 -3
pkgs/development/python-modules/python-roborock/default.nix
··· 15 pytest-asyncio, 16 pytestCheckHook, 17 pythonOlder, 18 }: 19 20 buildPythonPackage rec { 21 pname = "python-roborock"; 22 - version = "2.7.2"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.10"; ··· 27 src = fetchFromGitHub { 28 owner = "humbertogontijo"; 29 repo = "python-roborock"; 30 - rev = "refs/tags/v${version}"; 31 - hash = "sha256-sPG3AqVrv+BiB+copgaghWDT/Rb/WU0R+Y8Z2J6l+7E="; 32 }; 33 34 postPatch = '' ··· 48 dacite 49 paho-mqtt 50 pycryptodome 51 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ pycryptodomex ]; 52 53 nativeCheckInputs = [
··· 15 pytest-asyncio, 16 pytestCheckHook, 17 pythonOlder, 18 + vacuum-map-parser-roborock, 19 }: 20 21 buildPythonPackage rec { 22 pname = "python-roborock"; 23 + version = "2.8.3"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.10"; ··· 28 src = fetchFromGitHub { 29 owner = "humbertogontijo"; 30 repo = "python-roborock"; 31 + tag = "v${version}"; 32 + hash = "sha256-auKqv9fD8ensL3k5RbaCNzwrCO7Sd210CFUJROSdEjc="; 33 }; 34 35 postPatch = '' ··· 49 dacite 50 paho-mqtt 51 pycryptodome 52 + vacuum-map-parser-roborock 53 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ pycryptodomex ]; 54 55 nativeCheckInputs = [
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 # Do not edit! 3 4 { 5 - version = "2024.12.4"; 6 components = { 7 "3_day_blinds" = 8 ps: with ps; [
··· 2 # Do not edit! 3 4 { 5 + version = "2024.12.5"; 6 components = { 7 "3_day_blinds" = 8 ps: with ps; [
+3 -3
pkgs/servers/home-assistant/default.nix
··· 451 extraBuildInputs = extraPackages python.pkgs; 452 453 # Don't forget to run update-component-packages.py after updating 454 - hassVersion = "2024.12.4"; 455 456 in 457 python.pkgs.buildPythonApplication rec { ··· 472 owner = "home-assistant"; 473 repo = "core"; 474 rev = "refs/tags/${version}"; 475 - hash = "sha256-1zvJCxPM6G4uTjSBesKu21Wde2xu1mEnWa2jYiw5ypo="; 476 }; 477 478 # Secondary source is pypi sdist for translations 479 sdist = fetchPypi { 480 inherit pname version; 481 - hash = "sha256-XoII6cDT0aNoGJ8iXDanFOlzOwrSxQAcSHfL2n3QmQg="; 482 }; 483 484 build-system = with python.pkgs; [
··· 451 extraBuildInputs = extraPackages python.pkgs; 452 453 # Don't forget to run update-component-packages.py after updating 454 + hassVersion = "2024.12.5"; 455 456 in 457 python.pkgs.buildPythonApplication rec { ··· 472 owner = "home-assistant"; 473 repo = "core"; 474 rev = "refs/tags/${version}"; 475 + hash = "sha256-LJgwtVQvO1iUPYfzAsE6l9u4+EIzAnc3IJ5FZb3xniM="; 476 }; 477 478 # Secondary source is pypi sdist for translations 479 sdist = fetchPypi { 480 inherit pname version; 481 + hash = "sha256-PfedigJWHLv2BqHOgVedDyJxxxSmdHe2CvPNYCWi6aA="; 482 }; 483 484 build-system = with python.pkgs; [
+2 -2
pkgs/servers/home-assistant/stubs.nix
··· 10 11 buildPythonPackage rec { 12 pname = "homeassistant-stubs"; 13 - version = "2024.12.4"; 14 pyproject = true; 15 16 disabled = python.version != home-assistant.python.version; ··· 19 owner = "KapJI"; 20 repo = "homeassistant-stubs"; 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-BHcL7t/LcSWthb902yYRC8w8hN34vuSsDcANSZXmYdk="; 23 }; 24 25 build-system = [
··· 10 11 buildPythonPackage rec { 12 pname = "homeassistant-stubs"; 13 + version = "2024.12.5"; 14 pyproject = true; 15 16 disabled = python.version != home-assistant.python.version; ··· 19 owner = "KapJI"; 20 repo = "homeassistant-stubs"; 21 rev = "refs/tags/${version}"; 22 + hash = "sha256-ixDHGcs2Cvf6tIxYnn4j9Qs8MkmB1PGgIKnEN676Qs0="; 23 }; 24 25 build-system = [