2018-07-21 01:44:44 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, aiohttp }:
|
2018-05-07 11:33:38 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiohue";
|
2019-02-14 07:37:09 +00:00
|
|
|
version = "1.9.0";
|
2018-05-07 11:33:38 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:09 +00:00
|
|
|
sha256 = "3b6cb87652cf1ffc904443b9c5514873c331e159953f2ebf77a051444b350594";
|
2018-05-07 11:33:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ aiohttp ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "asyncio package to talk to Philips Hue";
|
|
|
|
homepage = https://github.com/balloob/aiohue;
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|