Unverified Commit 7bc9ef16 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

home-assistant: 2025.12.0 -> 2025.12.1 (#468272)

parents 9b4d1946 316f4136
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -23,14 +23,14 @@

buildPythonPackage rec {
  pname = "python-roborock";
  version = "3.9.3";
  version = "3.10.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Python-roborock";
    repo = "python-roborock";
    tag = "v${version}";
    hash = "sha256-lUHaLvsMDSu4MT8b3lanoaU0jJmPq2xPezoB8zTJyh4=";
    hash = "sha256-iDypFBZe9hCoHdZjgDT56M8SgBiUomCIttMrFdhsN/k=";
  };

  pythonRelaxDeps = [ "pycryptodome" ];
+4 −3
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
}:
let
  pname = "tuya-device-sharing-sdk";
  version = "0.2.5";
  version = "0.2.6";
in
buildPythonPackage {
  inherit pname version;
@@ -20,8 +20,9 @@ buildPythonPackage {
    repo = "tuya-device-sharing-sdk";
    # no tags on GitHub: https://github.com/tuya/tuya-device-sharing-sdk/issues/2
    # no sdist on PyPI: https://github.com/tuya/tuya-device-sharing-sdk/issues/41
    rev = "b2156585daefa39fcd2feff964e9be53124697f1";
    hash = "sha256-ypAS8tzO4Wyc8pVjSiGaNNl+2fkFNcC3Ftql3l2B8k8=";
    # check the dev branch for new changes
    rev = "86c0510e7229b9cf41b2bae57f3557a4d83c1928";
    hash = "sha256-nL7lr6HC+YpvmAdTnR6hzzn+9MEgzHkyzZuwjzsFHV0=";
  };

  build-system = [ setuptools ];
+2 −2
Original line number Diff line number Diff line
@@ -39,14 +39,14 @@

buildPythonPackage rec {
  pname = "uiprotect";
  version = "7.32.0";
  version = "7.33.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "uilibs";
    repo = "uiprotect";
    tag = "v${version}";
    hash = "sha256-nZSOOdck7OFjw6r2Jau4H2vX1PLxk5H0SMf2/wplZdo=";
    hash = "sha256-zGw77uP9Na+NnSzpxJ0Nf10L+nfbGuodVQNfomtaHhA=";
  };

  build-system = [ poetry-core ];
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
# Do not edit!

{
  version = "2025.12.0";
  version = "2025.12.1";
  components = {
    "3_day_blinds" =
      ps: with ps; [
+3 −3
Original line number Diff line number Diff line
@@ -291,7 +291,7 @@ let
  extraBuildInputs = extraPackages python.pkgs;

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

in
python.pkgs.buildPythonApplication rec {
@@ -312,13 +312,13 @@ python.pkgs.buildPythonApplication rec {
    owner = "home-assistant";
    repo = "core";
    tag = version;
    hash = "sha256-yQrgNiqEvQDf1FQrx4Yy6P074JwGF7noK+FR4pyp/1g=";
    hash = "sha256-lbQMikWqOu7Vvl7z+EsdRgJM0Itgohk91EZ53GgHSg8=";
  };

  # Secondary source is pypi sdist for translations
  sdist = fetchPypi {
    inherit pname version;
    hash = "sha256-/xwUWNvG8YZN6NQFkURFt7NcU2+8zlrGHdcvmofoofQ=";
    hash = "sha256-utcisERKo7TxdXkwvBq5/yAtgsEkvfBist9Z0WjDreI=";
  };

  build-system = with python.pkgs; [
Loading