{ lib , bleak-retry-connector , bluetooth-data-tools , bluetooth-sensor-state-data , buildPythonPackage , fetchFromGitHub , home-assistant-bluetooth , poetry-core , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "oralb-ble"; version = "0.17.6"; format = "pyproject"; disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "Bluetooth-Devices"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-6LnZ+Y68sl0uA5i764n4fFJnPeo+bAi/xgEvTK6LkXY="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ bleak-retry-connector bluetooth-data-tools bluetooth-sensor-state-data home-assistant-bluetooth ]; nativeCheckInputs = [ pytestCheckHook ]; postPatch = '' substituteInPlace pyproject.toml \ --replace " --cov=oralb_ble --cov-report=term-missing:skip-covered" "" ''; pythonImportsCheck = [ "oralb_ble" ]; meta = with lib; { description = "Library for Oral B BLE devices"; homepage = "https://github.com/Bluetooth-Devices/oralb-ble"; changelog = "https://github.com/Bluetooth-Devices/oralb-ble/releases/tag/v${version}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; }