python312Packages.velbus-aio: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-08 00:55:12 +02:00
parent cca5a2286c
commit 1a4dc94d1e
1 changed files with 13 additions and 18 deletions

View File

@ -1,12 +1,13 @@
{ lib
, backoff
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pyserial
, pyserial-asyncio
, pytestCheckHook
, setuptools
{
lib,
backoff,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pyserial,
pyserial-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
@ -24,9 +25,7 @@ buildPythonPackage rec {
fetchSubmodules = true;
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
backoff
@ -34,13 +33,9 @@ buildPythonPackage rec {
pyserial-asyncio
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"velbusaio"
];
pythonImportsCheck = [ "velbusaio" ];
meta = with lib; {
description = "Python library to support the Velbus home automation system";