{ lib , aiohttp , async-timeout , buildPythonPackage , fetchFromGitHub , pythonOlder }: buildPythonPackage rec { pname = "pyeight"; version = "0.3.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "mezz64"; repo = "pyEight"; rev = version; sha256 = "sha256-vW64m8XQZ9XfgjlZph47JFyOsxWtCbIJZBZVwsTrjLs="; }; propagatedBuildInputs = [ aiohttp async-timeout ]; # Module has no tests doCheck = false; pythonImportsCheck = [ "pyeight" ]; meta = with lib; { description = "Python library to interface with the Eight Sleep API"; homepage = "https://github.com/mezz64/pyEight"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; }