Merge pull request #122054 from mweinelt/home-assistant

home-assistant: 2021.5.0 -> 2021.5.1
This commit is contained in:
Robin Gloster
2021-05-07 13:02:28 -05:00
committed by GitHub
3 changed files with 21 additions and 7 deletions

View File

@@ -1,15 +1,29 @@
{ lib, buildPythonPackage, fetchPypi, aiohttp }:
{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
}:
buildPythonPackage rec {
pname = "aiohue";
version = "2.2.0";
version = "2.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "35696d04d6eb0328b7031ea3c0a3cfe5d83dfcf62f920522e4767d165c6bc529";
sha256 = "1xinllv2cvxl9fxi15nayzw9lfzijb3m7i49gkkr46qr8xvsavyk";
};
propagatedBuildInputs = [ aiohttp ];
propagatedBuildInputs = [
aiohttp
];
pythonImportsCheck = [
"aiohue"
"aiohue.discovery"
];
# has no tests
doCheck = false;
meta = with lib; {
description = "asyncio package to talk to Philips Hue";