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

home-assistant: 2025.7.2 -> 2025.7.3 (#427555)

parents c733e7bd 0b44ff1c
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
{
  buildPythonPackage,
  fetchFromGitHub,
  future,
  lib,
  pytestCheckHook,
  setuptools,
@@ -21,9 +20,7 @@ buildPythonPackage rec {

  build-system = [ setuptools ];

  dependencies = [
    future
  ];
  pythonRemoveDeps = [ "future" ];

  pythonImportsCheck = [ "ahocorapy" ];

+2 −2
Original line number Diff line number Diff line
@@ -15,14 +15,14 @@

buildPythonPackage rec {
  pname = "aioamazondevices";
  version = "3.3.0";
  version = "3.5.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "chemelli74";
    repo = "aioamazondevices";
    tag = "v${version}";
    hash = "sha256-MXVQ/VtsT/ppeQsSnf+LiddlZFKylQxL48vPRKj932w=";
    hash = "sha256-gFO0E5tphInHOTAgaifp+jNQQvs+HfLDhvErmLwwrPU=";
  };

  build-system = [ poetry-core ];
+9 −10
Original line number Diff line number Diff line
@@ -2,10 +2,8 @@
  lib,
  buildPythonPackage,
  fetchFromGitLab,
  future,
  pyserial,
  pytestCheckHook,
  pythonOlder,
  setuptools,
  six,
}:
@@ -13,9 +11,7 @@
buildPythonPackage rec {
  pname = "aurorapy";
  version = "0.2.7";
  format = "pyproject";

  disabled = pythonOlder "3.7";
  pyproject = true;

  src = fetchFromGitLab {
    owner = "energievalsabbia";
@@ -24,12 +20,15 @@ buildPythonPackage rec {
    hash = "sha256-rGwfGq3zdoG9NCGqVN29Q4bWApk5B6CRdsW9ctWgOec=";
  };

  nativeBuildInputs = [ setuptools ];
  postPatch = ''
    sed -i "/from past.builtins import map/d" aurorapy/client.py
  '';

  propagatedBuildInputs = [
    future
    pyserial
  ];
  build-system = [ setuptools ];

  pythonRemoveDeps = [ "future" ];

  dependencies = [ pyserial ];

  nativeCheckInputs = [
    pytestCheckHook
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@

buildPythonPackage rec {
  pname = "gios";
  version = "6.1.1";
  version = "6.1.2";
  pyproject = true;

  disabled = pythonOlder "3.12";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
    owner = "bieniu";
    repo = "gios";
    tag = version;
    hash = "sha256-BjyeWg75JQd+VAIQmtFIwEdByMPdGG+nIOgKCavjF0c=";
    hash = "sha256-z0MFXlim0YJ2ifAU94IjDOsIgaRzQk6YRqy64+LNehQ=";
  };

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

buildPythonPackage rec {
  pname = "pyenphase";
  version = "2.2.1";
  version = "2.2.2";
  pyproject = true;

  disabled = pythonOlder "3.11";
@@ -31,7 +31,7 @@ buildPythonPackage rec {
    owner = "pyenphase";
    repo = "pyenphase";
    tag = "v${version}";
    hash = "sha256-rIGPkeEh36Au2F+zx/4vR79212BWMdnG5yz+vJ2sxfU=";
    hash = "sha256-1RF1U4hMsGRa2OJJY2Plvuow3P+R7wbwd4ouo7QQ4n0=";
  };

  pythonRelaxDeps = [ "tenacity" ];
Loading