2018-07-20 17:44:44 -07:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, aiohttp }:
|
2018-05-07 03:33:38 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiohue";
|
2020-06-05 23:46:56 -07:00
|
|
|
version = "2.1.0";
|
2018-05-07 03:33:38 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-05 23:46:56 -07:00
|
|
|
sha256 = "bdd08ad65505057b9dc8fc1b5558250bd13aeba681a493080f710ffffc4260a3";
|
2018-05-07 03:33:38 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ aiohttp ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "asyncio package to talk to Philips Hue";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/balloob/aiohue";
|
2018-05-07 03:33:38 -07:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|