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