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

Merge pull request #151936 from mweinelt/home-assistant

parents 7efd936e 44a97867
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -2,19 +2,21 @@
, buildPythonPackage
, fetchPypi
, aiohttp
, asyncio-throttle
}:

buildPythonPackage rec {
  pname = "aiohue";
  version = "3.0.7";
  version = "3.0.10";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-Q01giQZytOQ+Ko7kvL0OfdDPysfvtKhW7fYmHmAv5Go=";
    sha256 = "sha256-LwtE9F5ic0aZ9/q3dSWn20O27yW/QD/Yi1NPdFmiP10=";
  };

  propagatedBuildInputs = [
    aiohttp
    asyncio-throttle
  ];

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

buildPythonPackage rec {
  pname = "aiopvpc";
  version = "2.2.4";
  version = "3.0.0";
  format = "pyproject";

  disabled = pythonOlder "3.8";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
    owner = "azogue";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-39cGDbaBS5we+WbqvABe6tKwTmbgd+NYLssKQCOuBsc=";
    sha256 = "sha256-eTCQddoZIaCs7iKGNBC8aSq6ek4vwYXgIXx35UlME/k=";
  };

  nativeBuildInputs = [
+2 −2
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@

buildPythonPackage rec {
  pname = "pytile";
  version = "2021.10.0";
  version = "2021.12.0";
  format = "pyproject";

  disabled = pythonOlder "3.7";
@@ -22,7 +22,7 @@ buildPythonPackage rec {
    owner = "bachya";
    repo = pname;
    rev = version;
    sha256 = "sha256-9FbcGhRmXULJgfJOmy6mhiZwQUDNmvxZI/WxjJIbnc8=";
    sha256 = "sha256-a76Qzk8ZsoV6HUOcDjMdnFVZJu/iKFbShoC9OZ0caDc=";
  };

  nativeBuildInputs = [
+2 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@

buildPythonPackage rec {
  pname = "xknx";
  version = "0.18.14";
  version = "0.18.15";
  format = "setuptools";

  disabled = pythonOlder "3.8";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
    owner = "XKNX";
    repo = pname;
    rev = version;
    sha256 = "sha256-PWBUG9sa9530cfXqpJ+0UVxOx+FxNfz4ZLazpUILvww=";
    sha256 = "sha256-k/fLUuBjXScTvlvoBLZIVPEqNGIPI04FBeTBadp5uiY=";
  };

  propagatedBuildInputs = [
+3 −3
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
# Do not edit!

{
  version = "2021.12.4";
  version = "2021.12.5";
  components = {
    "abode" = ps: with ps; [ abodepy ];
    "accuweather" = ps: with ps; [ accuweather ];
@@ -180,7 +180,7 @@
    "devolo_home_network" = ps: with ps; [ devolo-plc-api ];
    "dexcom" = ps: with ps; [ pydexcom ];
    "dhcp" = ps: with ps; [ aiodiscover scapy ];
    "dht" = ps: with ps; [ ]; # missing inputs: adafruit-circuitpython-dht
    "dht" = ps: with ps; [ ]; # missing inputs: RPi.GPIO adafruit-circuitpython-dht
    "dialogflow" = ps: with ps; [ aiohttp-cors ];
    "digital_ocean" = ps: with ps; [ digital-ocean ];
    "digitalloggers" = ps: with ps; [ ]; # missing inputs: dlipower
@@ -706,7 +706,7 @@
    "remote" = ps: with ps; [ ];
    "remote_rpi_gpio" = ps: with ps; [ ]; # missing inputs: gpiozero
    "renault" = ps: with ps; [ renault-api ];
    "repetier" = ps: with ps; [ ]; # missing inputs: pyrepetier
    "repetier" = ps: with ps; [ ]; # missing inputs: pyrepetierng
    "rest" = ps: with ps; [ jsonpath xmltodict ];
    "rest_command" = ps: with ps; [ ];
    "rflink" = ps: with ps; [ rflink ];
Loading