Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / aiohue / default.nix
blobb495bf4df463714af5bd89ccb88d53f4eb2d0d26
1 { lib, buildPythonPackage, fetchPypi, aiohttp }:
3 buildPythonPackage rec {
4   pname = "aiohue";
5   version = "2.2.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "35696d04d6eb0328b7031ea3c0a3cfe5d83dfcf62f920522e4767d165c6bc529";
10   };
12   propagatedBuildInputs = [ aiohttp ];
14   meta = with lib; {
15     description = "asyncio package to talk to Philips Hue";
16     homepage = "https://github.com/balloob/aiohue";
17     license = licenses.asl20;
18   };