{ lib , async-timeout , bluez , buildPythonPackage , dbus-fast , fetchFromGitHub , poetry-core , pytest-asyncio , pytestCheckHook , pythonOlder , typing-extensions }: buildPythonPackage rec { pname = "bleak"; version = "0.19.4"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "hbldh"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-Sdgsf1gFA0UcyFuaScwqmvHV2E6Crb6vSQgUbBox5hw="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ async-timeout dbus-fast typing-extensions ]; checkInputs = [ pytest-asyncio pytestCheckHook ]; postPatch = '' # bleak checks BlueZ's version with a call to `bluetoothctl --version` substituteInPlace bleak/backends/bluezdbus/__init__.py \ --replace \"bluetoothctl\" \"${bluez}/bin/bluetoothctl\" ''; pythonImportsCheck = [ "bleak" ]; meta = with lib; { description = "Bluetooth Low Energy platform agnostic client"; homepage = "https://github.com/hbldh/bleak"; license = licenses.mit; platforms = platforms.linux; maintainers = with maintainers; [ oxzi ]; }; }