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

20 lines
461 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, aiohttp }:
2018-05-07 10:33:38 +00:00
buildPythonPackage rec {
pname = "aiohue";
2020-08-16 17:30:49 +00:00
version = "2.2.0";
2018-05-07 10:33:38 +00:00
src = fetchPypi {
inherit pname version;
2020-08-16 17:30:49 +00:00
sha256 = "35696d04d6eb0328b7031ea3c0a3cfe5d83dfcf62f920522e4767d165c6bc529";
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";
2018-05-07 10:33:38 +00:00
license = licenses.asl20;
};
}