python312Packages.aiomysensors: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-02 09:14:13 +02:00
parent f04c85f1c0
commit a204e78315

View File

@ -1,16 +1,17 @@
{ lib {
, aiofiles lib,
, asyncio-mqtt aiofiles,
, awesomeversion asyncio-mqtt,
, buildPythonPackage awesomeversion,
, click buildPythonPackage,
, fetchFromGitHub click,
, marshmallow fetchFromGitHub,
, poetry-core marshmallow,
, pyserial-asyncio poetry-core,
, pytest-asyncio pyserial-asyncio,
, pytestCheckHook pytest-asyncio,
, pythonOlder pytestCheckHook,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -32,9 +33,7 @@ buildPythonPackage rec {
--replace-fail " --cov=src --cov-report=term-missing:skip-covered" "" --replace-fail " --cov=src --cov-report=term-missing:skip-covered" ""
''; '';
build-system = [ build-system = [ poetry-core ];
poetry-core
];
dependencies = [ dependencies = [
aiofiles aiofiles
@ -50,9 +49,7 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "aiomysensors" ];
"aiomysensors"
];
meta = with lib; { meta = with lib; {
description = "Library to connect to MySensors gateways"; description = "Library to connect to MySensors gateways";