Unverified Commit 1348fc1c authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #241773 from NixOS/home-assistant

home-assistant: 2023.6.3 -> 2023.7.0
parents baf494e5 2d330ce9
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, async-timeout
, chacha20poly1305-reuseable
, mock
, noiseprotocol
, protobuf
@@ -13,7 +14,7 @@

buildPythonPackage rec {
  pname = "aioesphomeapi";
  version = "13.9.0";
  version = "15.1.1";
  format = "setuptools";

  disabled = pythonOlder "3.9";
@@ -22,11 +23,12 @@ buildPythonPackage rec {
    owner = "esphome";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-RjLzOl8Cb6Vrq+75SvBntAmmiK70i3o2rED7Smnpiws=";
    hash = "sha256-pdG/yfrGWMu85WXA7CXrmK2FXc+x3e/RNPXCWIEn8n8=";
  };

  propagatedBuildInputs = [
    async-timeout
    chacha20poly1305-reuseable
    noiseprotocol
    protobuf
    zeroconf
+0 −39
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, ifaddr
, pythonOlder
}:

buildPythonPackage rec {
  pname = "aiosenseme";
  version = "0.6.1";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "bdraco";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-ShK4DP1lAtAFI6z2kf5T1ecbNTKUn2kqUjps2ABRegg=";
  };

  propagatedBuildInputs = [
    ifaddr
  ];

  pythonImportsCheck = [
    "aiosenseme"
  ];

  # Module has no tests
  doCheck = false;

  meta = with lib; {
    description = "Module to interact with SenseME fans and lights by Big Ass Fans";
    homepage = "https://github.com/bdraco/aiosenseme";
    license = with licenses; [ gpl3Only ];
    maintainers = with maintainers; [ fab ];
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@

buildPythonPackage rec {
  pname = "hass-nabucasa";
  version = "0.67.1";
  version = "0.69.0";
  format = "setuptools";

  disabled = pythonOlder "3.8";
@@ -26,7 +26,7 @@ buildPythonPackage rec {
    owner = "nabucasa";
    repo = pname;
    rev = "refs/tags/${version}";
    hash = "sha256-/cu7+fMbe9kyWGGBGBwjsiA6PXoUJZ7IFzpEcnVSLn0=";
    hash = "sha256-7FO/z5AseP80y74e4ivLXlwB9t5jJf2bCaNp6HfqZ1c=";
  };

  postPatch = ''
+6 −2
Original line number Diff line number Diff line
@@ -2,19 +2,22 @@
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:

let
  pname = "lru-dict";
  version = "1.1.8";
  version = "1.2.0";
in
buildPythonPackage {
  inherit pname version;
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-h4vI70Bz5c+5U9/Bz0WF20HouBTAEGq9400A7g0LMRU=";
    hash = "sha256-E8VngvGdaN302NsBcAQRkoWWFlFMcGsSbQ3y7HKhG9c=";
  };

  nativeCheckInputs = [
@@ -28,6 +31,7 @@ buildPythonPackage {
  meta = with lib; {
    description = "Fast and memory efficient LRU cache for Python";
    homepage = "https://github.com/amitdev/lru-dict";
    changelog = "https://github.com/amitdev/lru-dict/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ hexa ];
  };
+2 −2
Original line number Diff line number Diff line
@@ -20,14 +20,14 @@

buildPythonPackage rec {
  pname = "pymodbus";
  version = "3.1.3";
  version = "3.3.2";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "pymodbus-dev";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-GHyDlt046v4KP9KQRnXH6F+3ikoCjbhVHEQuSdm99a8=";
    hash = "sha256-EGJyb0AVLKN7FEoeWF4rVqmJBNbXHent9P+cxc13rQs=";
  };

  # Twisted asynchronous version is not supported due to a missing dependency
Loading