nixpkgs/pkgs/development/python-modules/aiohue/default.nix

20 lines
467 B
Nix
Raw Normal View History

2018-05-07 10:33:38 +00:00
{ lib, stdenv, buildPythonPackage, fetchPypi, aiohttp }:
buildPythonPackage rec {
pname = "aiohue";
2018-06-21 05:37:15 +00:00
version = "1.6.0";
2018-05-07 10:33:38 +00:00
src = fetchPypi {
inherit pname version;
2018-06-21 05:37:15 +00:00
sha256 = "87f0f86865e88ea715ab358b1e5f2838b79ee7cdc0bdf762e9ed60aaf4c8bd4a";
2018-05-07 10:33:38 +00:00
};
propagatedBuildInputs = [ aiohttp ];
meta = with lib; {
description = "asyncio package to talk to Philips Hue";
homepage = https://github.com/balloob/aiohue;
license = licenses.asl20;
};
}