{ lib , buildPythonPackage , fetchPypi , aiohttp }: buildPythonPackage rec { pname = "aiohue"; version = "2.5.1"; src = fetchPypi { inherit pname version; sha256 = "3ee8e857b07364516f8b9f0e5c52d4cd775036f3ace37c2769de1e8579f4dc07"; }; propagatedBuildInputs = [ aiohttp ]; pythonImportsCheck = [ "aiohue" "aiohue.discovery" ]; # Project has no tests doCheck = false; meta = with lib; { description = "Python package to talk to Philips Hue"; homepage = "https://github.com/home-assistant-libs/aiohue"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ fab ]; }; }