{ lib , buildPythonPackage , fetchFromGitLab , future , ifaddr , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "yeelight"; version = "0.6.0"; disabled = pythonOlder "3.4"; src = fetchFromGitLab { owner = "stavros"; repo = "python-yeelight"; rev = "v${version}"; sha256 = "0yycc2pdqaa9y46jycvm0p6braps7ljg2vvljngdqj2l1a2jmv7x"; }; propagatedBuildInputs = [ future ifaddr ]; checkInputs = [ pytestCheckHook ]; pytestFlagsArray = [ "yeelight/tests.py" ]; pythonImportsCheck = [ "yeelight" ]; meta = with lib; { description = "Python library for controlling YeeLight RGB bulbs"; homepage = "https://gitlab.com/stavros/python-yeelight/"; license = licenses.asl20; maintainers = with maintainers; [ nyanloutre ]; }; }