python311Packages.meross-iot: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-25 08:38:37 +02:00
parent 4c7c3bbfa1
commit 93c62e38b9
1 changed files with 13 additions and 16 deletions

View File

@ -1,13 +1,14 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, paho-mqtt
, pytestCheckHook
, pythonOlder
, requests
, retrying
, setuptools
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
paho-mqtt,
pytestCheckHook,
pythonOlder,
requests,
retrying,
setuptools,
}:
buildPythonPackage rec {
@ -24,9 +25,7 @@ buildPythonPackage rec {
hash = "sha256-Zf392XMhSrCn5KM761YXzinD46Et4itva7USsFNRgPI=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
aiohttp
@ -38,9 +37,7 @@ buildPythonPackage rec {
# Test require network access
doCheck = false;
pythonImportsCheck = [
"meross_iot"
];
pythonImportsCheck = [ "meross_iot" ];
meta = with lib; {
description = "Python library to interact with Meross devices";