mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
20 lines
459 B
Nix
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;
|
|
};
|
|
}
|