1{ lib, buildPythonPackage, fetchPypi, aiohttp }:
2
3buildPythonPackage rec {
4 pname = "aiohue";
5 version = "1.9.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "3c23aed8e82f398b732279f5f7ee7ed00949ff2db7009f7a2dc705f7c2d16783";
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}