python312Packages.bleak-retry-connector: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-10 08:46:52 +02:00
parent 0daa01d260
commit 3991ad9d87
1 changed files with 14 additions and 17 deletions

View File

@ -1,14 +1,15 @@
{ lib
, async-timeout
, bleak
, bluetooth-adapters
, dbus-fast
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pythonOlder
, pytest-asyncio
{
lib,
async-timeout,
bleak,
bluetooth-adapters,
dbus-fast,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
pythonOlder,
pytest-asyncio,
}:
buildPythonPackage rec {
@ -30,9 +31,7 @@ buildPythonPackage rec {
--replace-fail " --cov=bleak_retry_connector --cov-report=term-missing:skip-covered" ""
'';
build-system = [
poetry-core
];
build-system = [ poetry-core ];
dependencies = [
async-timeout
@ -53,9 +52,7 @@ buildPythonPackage rec {
"test_establish_connection_without_dangerous_use_cached_services"
];
pythonImportsCheck = [
"bleak_retry_connector"
];
pythonImportsCheck = [ "bleak_retry_connector" ];
meta = with lib; {
description = "Connector for Bleak Clients that handles transient connection failures";