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

View File

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