python312Packages.zha-quirks: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-10 00:34:51 +02:00
parent eeccc816be
commit 502eff17df

View File

@ -1,12 +1,13 @@
{ lib {
, aiohttp lib,
, buildPythonPackage aiohttp,
, fetchFromGitHub buildPythonPackage,
, pytest-asyncio fetchFromGitHub,
, pytestCheckHook pytest-asyncio,
, pythonOlder pytestCheckHook,
, setuptools pythonOlder,
, zigpy setuptools,
zigpy,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -29,9 +30,7 @@ buildPythonPackage rec {
--replace-fail 'dynamic = ["version"]' 'version = "${version}"' --replace-fail 'dynamic = ["version"]' 'version = "${version}"'
''; '';
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
aiohttp aiohttp
@ -50,9 +49,7 @@ buildPythonPackage rec {
"test_smart_air_sensor" "test_smart_air_sensor"
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "zhaquirks" ];
"zhaquirks"
];
meta = with lib; { meta = with lib; {
description = "ZHA Device Handlers are custom quirks implementations for Zigpy"; description = "ZHA Device Handlers are custom quirks implementations for Zigpy";