3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/aiohue/default.nix

20 lines
459 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, aiohttp }:
2018-05-07 11:33:38 +01:00
buildPythonPackage rec {
pname = "aiohue";
2019-02-23 14:36:00 +00:00
version = "1.9.1";
2018-05-07 11:33:38 +01:00
src = fetchPypi {
inherit pname version;
2019-02-23 14:36:00 +00:00
sha256 = "3c23aed8e82f398b732279f5f7ee7ed00949ff2db7009f7a2dc705f7c2d16783";
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;
};
}