{ lib , aiohttp , buildPythonPackage , fetchFromGitHub , paho-mqtt , pydantic , pythonOlder }: buildPythonPackage rec { pname = "yolink-api"; version = "0.1.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "YoSmart-Inc"; repo = pname; rev = "v${version}"; hash = "sha256-uEW8d8b7ObwmGwVTOq25kZWaLVv4lxTl+cqZK5Kjkmo="; }; propagatedBuildInputs = [ aiohttp paho-mqtt pydantic ]; # Module has no tests doCheck = false; pythonImportsCheck = [ "yolink" ]; meta = with lib; { description = "Library to interface with Yolink"; homepage = "https://github.com/YoSmart-Inc/yolink-api"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }