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