Unverified Commit 7acb3020 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

home-assistant: 2024.11.0 -> 2024.11.1 (#354584)

parents df76cd6a 7234221a
Loading
Loading
Loading
Loading
+18 −18
Original line number Diff line number Diff line
{
  aiohttp,
  buildPythonPackage,
  fetchPypi,
  isPy3k,
  fetchFromGitHub,
  lib,
  python,
  requests,
  setuptools,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "agent-py";
  version = "0.0.23";
  format = "setuptools";
  version = "0.0.24";
  pyproject = true;

  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1hx88m8b8kfb2gm6hii5ldjv7hlvqf99cz0w2vj0d0grrxcbn5cz";
  src = fetchFromGitHub {
    owner = "ispysoftware";
    repo = "agent-py";
    rev = "refs/tags/agent-py.${version}";
    hash = "sha256-PP4gQ3AFYLJPUt9jhhiV9HkfBhIzd+JIsGpgK6FNmaE=";
  };

  propagatedBuildInputs = [
    requests
    aiohttp
  ];
  build-system = [ setuptools ];

  dependencies = [ aiohttp ];

  doCheck = false; # only test is outdated

  nativeCheckInputs = [ pytestCheckHook ];

  checkPhase = ''
    ${python.interpreter} tests/test_agent.py
  '';
  pythonImportsCheck = [ "agent" ];

  meta = with lib; {
    description = "Python wrapper around the Agent REST API";
+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@

buildPythonPackage rec {
  pname = "google-nest-sdm";
  version = "6.1.3";
  version = "6.1.4";
  pyproject = true;

  disabled = pythonOlder "3.10";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
    owner = "allenporter";
    repo = "python-google-nest-sdm";
    rev = "refs/tags/${version}";
    hash = "sha256-X/jiers05zNAEUau6SVKGyyIx9HCs7yI0HsuZ7/tXfo=";
    hash = "sha256-F/vpyg3EYgKCsq/0yL3uP+1azu8bbHOMsf85Yabl0KQ=";
  };

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

buildPythonPackage rec {
  pname = "ha-ffmpeg";
  version = "3.2.1";
  version = "3.2.2";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
    owner = "home-assistant-libs";
    repo = "ha-ffmpeg";
    rev = "refs/tags/${version}";
    hash = "sha256-Yu23kRChPbq/9sKvu9uY4qtKXX7CVNagZX9Z6ZzDqcw=";
    hash = "sha256-TbSoKoOiLx3O7iykiTri5GBHGj7WoB8iSCpFIrV4ZgU=";
  };

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

buildPythonPackage rec {
  pname = "python-roborock";
  version = "2.6.1";
  version = "2.7.2";
  pyproject = true;

  disabled = pythonOlder "3.10";
@@ -28,7 +28,7 @@ buildPythonPackage rec {
    owner = "humbertogontijo";
    repo = "python-roborock";
    rev = "refs/tags/v${version}";
    hash = "sha256-0gzbPa19UIt8Vs0Vnqs9j0tFJAkRTupU7DxT+7rwouI=";
    hash = "sha256-sPG3AqVrv+BiB+copgaghWDT/Rb/WU0R+Y8Z2J6l+7E=";
  };

  postPatch = ''
+2 −2
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@

buildPythonPackage rec {
  pname = "sense-energy";
  version = "0.13.2";
  version = "0.13.3";
  pyproject = true;

  disabled = pythonOlder "3.9";
@@ -25,7 +25,7 @@ buildPythonPackage rec {
    owner = "scottbonline";
    repo = "sense";
    rev = "refs/tags/${version}";
    hash = "sha256-HE0bMcxfzfaMLDepjwDwV8AXQ3Q/bQt6SqHt7m/UY9I=";
    hash = "sha256-k1W84c0odpYv0vI2u2zqfWGJXSpYJRSwfFyXACMto7s=";
  };

  postPatch = ''
Loading