{ lib , aiohttp , awesomeversion , backoff , buildPythonPackage , cachetools , fetchFromGitHub , poetry-core , yarl , aresponses , pytest-asyncio , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "wled"; version = "0.13.1"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "frenck"; repo = "python-wled"; rev = "v${version}"; sha256 = "sha256-QQPrAfk+BX8mjqn9ISim9hLEZR2nbgxbkwCv+91yeRY="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ aiohttp awesomeversion backoff cachetools yarl ]; checkInputs = [ aresponses pytest-asyncio pytestCheckHook ]; postPatch = '' # Upstream doesn't set a version for the pyproject.toml substituteInPlace pyproject.toml \ --replace "0.0.0" "${version}" \ --replace "--cov" "" ''; pythonImportsCheck = [ "wled" ]; meta = with lib; { description = "Asynchronous Python client for WLED"; homepage = "https://github.com/frenck/python-wled"; license = licenses.mit; maintainers = with maintainers; [ hexa ]; }; }