Skip to content

Commit

Permalink
Merge pull request #197059 from NixOS/home-assistant
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Oct 23, 2022
2 parents e0d67f7 + 81fc50f commit 0e6df35
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

buildPythonPackage rec {
pname = "bluetooth-auto-recovery";
version = "0.3.4";
version = "0.3.6";
format = "pyproject";

disabled = pythonOlder "3.9";
Expand All @@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "v${version}";
hash = "sha256-jInCWya146QI7D89zSAPChF8GMDj7NRzu9NvVIbkntM=";
hash = "sha256-2GmBO67sUIjasF5MHrDkZ4D+dk3xN+HNpc7nSN+qTaQ=";
};

nativeBuildInputs = [
Expand Down
8 changes: 6 additions & 2 deletions pkgs/development/python-modules/intellifire4py/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
{ lib
, aenum
, aiohttp
, asynctest
, buildPythonPackage
, fetchFromGitHub
, pydantic
, pytest-mock
, pytestCheckHook
, pythonOlder
, requests
}:

buildPythonPackage rec {
pname = "intellifire4py";
version = "2.0.1";
version = "2.2.1";
format = "setuptools";

disabled = pythonOlder "3.7";
Expand All @@ -20,7 +22,7 @@ buildPythonPackage rec {
owner = "jeeftor";
repo = pname;
rev = version;
hash = "sha256-CO6ImL2e6B2yvHAQs3Cc7oaOllB5V9sap4bQS/XRnWI=";
hash = "sha256-dn5814eRZ9456Fn7blf1UzXPii4dXu3sjoXBV7CmwSs=";
};

propagatedBuildInputs = [
Expand All @@ -31,6 +33,8 @@ buildPythonPackage rec {
];

checkInputs = [
asynctest
pytest-mock
pytestCheckHook
];

Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/zha-quirks/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

buildPythonPackage rec {
pname = "zha-quirks";
version = "0.0.82";
version = "0.0.83";
format = "setuptools";

disabled = pythonOlder "3.7";
Expand All @@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = "zha-device-handlers";
rev = "refs/tags/${version}";
hash = "sha256-2pm0fLPw/ROjYwvaL1wyZ39ZAbAjwc1TPsbYsO0+vcI=";
hash = "sha256-N+DSaPohwkMJ+YjbnUi7k8GQ+YFd6Ng8n0yesEnOnRA=";
};

propagatedBuildInputs = [
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 = "2022.10.4";
version = "2022.10.5";
components = {
"abode" = ps: with ps; [
abodepy
Expand Down
4 changes: 2 additions & 2 deletions pkgs/servers/home-assistant/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ let
extraPackagesFile = writeText "home-assistant-packages" (lib.concatMapStringsSep "\n" (pkg: pkg.pname) extraBuildInputs);

# Don't forget to run parse-requirements.py after updating
hassVersion = "2022.10.4";
hassVersion = "2022.10.5";

in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
Expand All @@ -272,7 +272,7 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = version;
hash = "sha256-949QvezOYW6hA3iU9j2Wu6DhX35CzW0ruwGe3JGPsH4=";
hash = "sha256-y2X6tiR3TLbQ1tYUUuu8D0i5j+P0FnDWJ1mSlGPwIuY=";
};

# leave this in, so users don't have to constantly update their downstream patch handling
Expand Down

0 comments on commit 0e6df35

Please sign in to comment.