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

home-assistant: 2025.2.1 -> 2025.2.2 (#381007)

parents 19ad2251 076ab9ca
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@

buildPythonPackage rec {
  pname = "habiticalib";
  version = "0.3.5";
  version = "0.3.7";
  pyproject = true;

  disabled = pythonOlder "3.12";
@@ -28,7 +28,7 @@ buildPythonPackage rec {
    owner = "tr4nt0r";
    repo = "habiticalib";
    tag = "v${version}";
    hash = "sha256-r0wpWd6hFPwo5S0ft0srL1a74rODWDH0elkY1BN74Gs=";
    hash = "sha256-i2yGPTZiinErWK7vX/3mwBtO4rjUhoEORhnXkFplUcM=";
  };

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

buildPythonPackage rec {
  pname = "ohme";
  version = "1.2.8";
  version = "1.2.9";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
    owner = "dan-r";
    repo = "ohmepy";
    tag = "v${version}";
    hash = "sha256-T9xULo1kN/JZGlYKTbTue8/RH2CFOAzuFeDGM6+76rE=";
    hash = "sha256-wsYANCe32LG2rAWhMt8x51pHVTZVcgR+0aBTjY56tnE=";
  };

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

buildPythonPackage rec {
  pname = "onedrive-personal-sdk";
  version = "0.0.8";
  version = "0.0.10";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "zweckj";
    repo = "onedrive-personal-sdk";
    tag = "v${version}";
    hash = "sha256-sA+1yqRcx7WUJFuMIIuPQm7ggVbrlSCufqq0jyhDDdA=";
    hash = "sha256-8enxmHc4s6bfxeIqOqc9DpT3pKIwocIsO3hYrK3G7CM=";
  };

  build-system = [ setuptools ];
+7 −3
Original line number Diff line number Diff line
{
  lib,
  aiofiles,
  aiohttp,
  buildPythonPackage,
  fetchFromGitHub,
@@ -11,7 +12,7 @@

buildPythonPackage rec {
  pname = "py-synologydsm-api";
  version = "2.6.0";
  version = "2.6.2";
  pyproject = true;

  disabled = pythonOlder "3.9";
@@ -20,12 +21,15 @@ buildPythonPackage rec {
    owner = "mib1185";
    repo = "py-synologydsm-api";
    tag = "v${version}";
    hash = "sha256-CjsSn9kbSOSiia47gDHUbMCgJs3pDJaJfQOwMPP+5WI=";
    hash = "sha256-mkwHw10IzVWtuLGbpY/v7yCJgI6TBIJEo1XSB/NlZKs=";
  };

  build-system = [ setuptools ];

  dependencies = [ aiohttp ];
  dependencies = [
    aiofiles
    aiohttp
  ];

  nativeCheckInputs = [
    pytest-asyncio
+3 −3
Original line number Diff line number Diff line
@@ -10,14 +10,14 @@

buildPythonPackage rec {
  pname = "pyheos";
  version = "1.0.1";
  version = "1.0.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "andrewsayre";
    repo = "pyheos";
    tag = version;
    hash = "sha256-2hrWK3nRFnRtv4dfXXELOxKwttG9Oo2I2+eSXcfgUi8=";
    tag = "1.02"; # TODO: https://github.com/andrewsayre/pyheos/issues/104
    hash = "sha256-1JybtE5wweuIgZ8eFUX9XYPji7FzxbRFPKy75Fp1nw0=";
  };

  build-system = [ setuptools ];
Loading