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-12-19 19:31:04 +00:00
|
|
|
version = "1.10.1";
|
2018-05-07 11:33:38 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 19:31:04 +00:00
|
|
|
sha256 = "d95e51f15c442d769004774e7b4220155e32dc6c8ae834b035a2f0d8ff783ff0";
|
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;
|
|
|
|
};
|
|
|
|
}
|