1{ lib, buildPythonPackage, fetchPypi, aiohttp }:
2
3buildPythonPackage rec {
4 pname = "aiohue";
5 version = "2.2.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "35696d04d6eb0328b7031ea3c0a3cfe5d83dfcf62f920522e4767d165c6bc529";
10 };
11
12 propagatedBuildInputs = [ aiohttp ];
13
14 meta = with lib; {
15 description = "asyncio package to talk to Philips Hue";
16 homepage = "https://github.com/balloob/aiohue";
17 license = licenses.asl20;
18 };
19}