{ lib , aiohttp , bidict , buildPythonPackage , fetchPypi , humanize , lxml , pythonOlder , requests , slixmpp , websockets }: buildPythonPackage rec { pname = "gehomesdk"; version = "0.4.22"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; sha256 = "sha256-3HErbW9/YD8Jd6zr5O2hjoLZ9x5P/vzZLjqPmSm09EM="; }; propagatedBuildInputs = [ aiohttp bidict humanize lxml requests slixmpp websockets ]; # Tests are not shipped and source is not tagged # https://github.com/simbaja/gehome/issues/32 doCheck = false; pythonImportsCheck = [ "gehomesdk" ]; meta = with lib; { description = "Python SDK for GE smart appliances"; homepage = "https://github.com/simbaja/gehome"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }