Skip to content

Commit

Permalink
home-assistant: 2025.2.1 -> 2025.2.2 (#381007)
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt authored Feb 10, 2025
2 parents 19ad225 + 076ab9c commit 1783f05
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 20 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/habiticalib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

buildPythonPackage rec {
pname = "habiticalib";
version = "0.3.5";
version = "0.3.7";
pyproject = true;

disabled = pythonOlder "3.12";
Expand All @@ -28,7 +28,7 @@ buildPythonPackage rec {
owner = "tr4nt0r";
repo = "habiticalib";
tag = "v${version}";
hash = "sha256-r0wpWd6hFPwo5S0ft0srL1a74rODWDH0elkY1BN74Gs=";
hash = "sha256-i2yGPTZiinErWK7vX/3mwBtO4rjUhoEORhnXkFplUcM=";
};

build-system = [
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/ohme/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

buildPythonPackage rec {
pname = "ohme";
version = "1.2.8";
version = "1.2.9";
pyproject = true;

disabled = pythonOlder "3.7";
Expand All @@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = "dan-r";
repo = "ohmepy";
tag = "v${version}";
hash = "sha256-T9xULo1kN/JZGlYKTbTue8/RH2CFOAzuFeDGM6+76rE=";
hash = "sha256-wsYANCe32LG2rAWhMt8x51pHVTZVcgR+0aBTjY56tnE=";
};

build-system = [ setuptools ];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@

buildPythonPackage rec {
pname = "onedrive-personal-sdk";
version = "0.0.8";
version = "0.0.10";
pyproject = true;

src = fetchFromGitHub {
owner = "zweckj";
repo = "onedrive-personal-sdk";
tag = "v${version}";
hash = "sha256-sA+1yqRcx7WUJFuMIIuPQm7ggVbrlSCufqq0jyhDDdA=";
hash = "sha256-8enxmHc4s6bfxeIqOqc9DpT3pKIwocIsO3hYrK3G7CM=";
};

build-system = [ setuptools ];
Expand Down
10 changes: 7 additions & 3 deletions pkgs/development/python-modules/py-synologydsm-api/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
lib,
aiofiles,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
Expand All @@ -11,7 +12,7 @@

buildPythonPackage rec {
pname = "py-synologydsm-api";
version = "2.6.0";
version = "2.6.2";
pyproject = true;

disabled = pythonOlder "3.9";
Expand All @@ -20,12 +21,15 @@ buildPythonPackage rec {
owner = "mib1185";
repo = "py-synologydsm-api";
tag = "v${version}";
hash = "sha256-CjsSn9kbSOSiia47gDHUbMCgJs3pDJaJfQOwMPP+5WI=";
hash = "sha256-mkwHw10IzVWtuLGbpY/v7yCJgI6TBIJEo1XSB/NlZKs=";
};

build-system = [ setuptools ];

dependencies = [ aiohttp ];
dependencies = [
aiofiles
aiohttp
];

nativeCheckInputs = [
pytest-asyncio
Expand Down
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/pyheos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@

buildPythonPackage rec {
pname = "pyheos";
version = "1.0.1";
version = "1.0.2";
pyproject = true;

src = fetchFromGitHub {
owner = "andrewsayre";
repo = "pyheos";
tag = version;
hash = "sha256-2hrWK3nRFnRtv4dfXXELOxKwttG9Oo2I2+eSXcfgUi8=";
tag = "1.02"; # TODO: https://github.com/andrewsayre/pyheos/issues/104
hash = "sha256-1JybtE5wweuIgZ8eFUX9XYPji7FzxbRFPKy75Fp1nw0=";
};

build-system = [ setuptools ];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@

buildPythonPackage rec {
pname = "python-google-drive-api";
version = "0.0.2";
version = "0.1.0";
pyproject = true;

src = fetchFromGitHub {
owner = "tronikos";
repo = "python-google-drive-api";
tag = "v${version}";
hash = "sha256-JvPaMD7UHDqCQCoh1Q8jNFw4R7Jbp2YQDBI3xVp1L1g=";
hash = "sha256-3es2rmndahH+DMEEwjBxyZKd27qDZIocPbzScF7B5fA=";
};

build-system = [ setuptools ];
Expand Down
2 changes: 1 addition & 1 deletion pkgs/servers/home-assistant/component-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Do not edit!

{
version = "2025.2.1";
version = "2025.2.2";
components = {
"3_day_blinds" =
ps: with ps; [
Expand Down
6 changes: 3 additions & 3 deletions pkgs/servers/home-assistant/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ let
extraBuildInputs = extraPackages python.pkgs;

# Don't forget to run update-component-packages.py after updating
hassVersion = "2025.2.1";
hassVersion = "2025.2.2";

in
python.pkgs.buildPythonApplication rec {
Expand All @@ -390,13 +390,13 @@ python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = "refs/tags/${version}";
hash = "sha256-iWOrBIKsN+fi5pzMzekmTBIk2FoM2HOsWujkuZ45lHE=";
hash = "sha256-aCGfxWJnDJ4V5FjrFV3TLHBtPQDyNh1qjDKFL/bHBz0=";
};

# Secondary source is pypi sdist for translations
sdist = fetchPypi {
inherit pname version;
hash = "sha256-GToOHfDOWrjiQEcxgX9h2tCYqGUv3mXxVh1/GchiNRU=";
hash = "sha256-9bdkcDMTQtaRlyLK65fwVDlV4s1GpxqbTYDNxstST4w=";
};

build-system = with python.pkgs; [
Expand Down
4 changes: 2 additions & 2 deletions pkgs/servers/home-assistant/frontend.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ 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 = "20250205.0";
version = "20250210.0";
format = "wheel";

src = fetchPypi {
inherit version format;
pname = "home_assistant_frontend";
dist = "py3";
python = "py3";
hash = "sha256-9P2OqnPNPydBi4k9iN0hSyGTyBW4PohdgJwQqa8MlYg=";
hash = "sha256-Pm9lnD+3ywHtLWPbuIm7brWzY+804+V84pH6g561LAU=";
};

# there is nothing to strip in this package
Expand Down

0 comments on commit 1783f05

Please sign in to comment.