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-10-16 10:43:02 +01:00
version = "1.9.2";
2018-05-07 11:33:38 +01:00
src = fetchPypi {
inherit pname version;
2019-10-16 10:43:02 +01:00
sha256 = "a7e545ae17658c10f2c5321e40b85426a8c284e5b33b5dfbe9171f9bdf37aa3e";
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;
};
}