nixpkgs/pkgs/development/python-modules/aiohue/default.nix
2019-10-18 09:53:55 +02:00

20 lines
459 B
Nix

{ lib, buildPythonPackage, fetchPypi, aiohttp }:
buildPythonPackage rec {
pname = "aiohue";
version = "1.9.2";
src = fetchPypi {
inherit pname version;
sha256 = "a7e545ae17658c10f2c5321e40b85426a8c284e5b33b5dfbe9171f9bdf37aa3e";
};
propagatedBuildInputs = [ aiohttp ];
meta = with lib; {
description = "asyncio package to talk to Philips Hue";
homepage = https://github.com/balloob/aiohue;
license = licenses.asl20;
};
}