{ lib , async-timeout , btsocket , buildPythonPackage , fetchFromGitHub , poetry-core , pyric , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "bluetooth-auto-recovery"; version = "0.3.6"; format = "pyproject"; disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "Bluetooth-Devices"; repo = pname; rev = "v${version}"; hash = "sha256-2GmBO67sUIjasF5MHrDkZ4D+dk3xN+HNpc7nSN+qTaQ="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ async-timeout btsocket pyric ]; checkInputs = [ pytestCheckHook ]; postPatch = '' substituteInPlace pyproject.toml \ --replace " --cov=bluetooth_auto_recovery --cov-report=term-missing:skip-covered" "" ''; pythonImportsCheck = [ "bluetooth_auto_recovery" ]; meta = with lib; { description = "Library for recovering Bluetooth adapters"; homepage = "https://github.com/Bluetooth-Devices/bluetooth-auto-recovery"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; }