Unverified Commit 5809e404 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

home-assistant: 2024.10.3 -> 2024.10.4 (#351307)

parents 45b4ebec 0ee813aa
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -12,6 +12,8 @@ python3.pkgs.buildPythonApplication rec {

  build-system = [ python3.pkgs.setuptools ];

  pythonRelaxDeps = [ "tenacity" ];

  dependencies = with python3.pkgs; [ python-dateutil tornado python-daemon tenacity ];

  pythonImportsCheck = [ "luigi" ];
+4 −1
Original line number Diff line number Diff line
@@ -18,7 +18,10 @@ python3.pkgs.buildPythonApplication rec {

  sourceRoot = "${src.name}/src";

  pythonRelaxDeps = [ "setuptools" ];
  pythonRelaxDeps = [
    "setuptools"
    "tenacity"
  ];

  build-system = with python3.pkgs; [ poetry-core ];

+12 −3
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
  fetchFromGitLab,
  setuptools,
  aiohttp,
  tenacity,
  aioresponses,
  pytest-asyncio,
  pytestCheckHook,
@@ -11,19 +12,22 @@

buildPythonPackage rec {
  pname = "doorbirdpy";
  version = "3.0.3";
  version = "3.0.5";
  pyproject = true;

  src = fetchFromGitLab {
    owner = "klikini";
    repo = "doorbirdpy";
    rev = "refs/tags/${version}";
    hash = "sha256-0UvzMFYKM/Sb9B2XwZwl+a9v7lTxAc1H59vR88VwDww=";
    hash = "sha256-SVkprX9fMy1uGixsxsE7gbUJndvl+V/kle3Rq34S6Hs=";
  };

  build-system = [ setuptools ];

  dependencies = [ aiohttp ];
  dependencies = [
    aiohttp
    tenacity
  ];

  nativeCheckInputs = [
    aioresponses
@@ -31,6 +35,11 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  disabledTests = [
    # connection error on mock host
    "test_info_auth_fails"
  ];

  pythonImportsCheck = [ "doorbirdpy" ];

  meta = with lib; {
+2 −0
Original line number Diff line number Diff line
@@ -48,6 +48,8 @@ buildPythonPackage rec {

  build-system = [ poetry-core ];

  pythonRelaxDeps = [ "tenacity" ];

  dependencies = [
    jsonpatch
    langsmith
+2 −0
Original line number Diff line number Diff line
@@ -58,6 +58,8 @@ buildPythonPackage rec {

  buildInputs = [ bash ];

  pythonRelaxDeps = [ "tenacity" ];

  dependencies = [
    aiohttp
    langchain-core
Loading