python311Packages.whirlpool-sixth-sense: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-06 20:19:21 +02:00
parent f595d4f269
commit 17f8a37578

View File

@ -1,15 +1,16 @@
{ lib {
, aioconsole lib,
, aiohttp aioconsole,
, async-timeout aiohttp,
, buildPythonPackage async-timeout,
, fetchFromGitHub buildPythonPackage,
, pytest-asyncio fetchFromGitHub,
, pytest-mock pytest-asyncio,
, pytestCheckHook pytest-mock,
, pythonOlder pytestCheckHook,
, setuptools pythonOlder,
, websockets setuptools,
websockets,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -26,9 +27,7 @@ buildPythonPackage rec {
hash = "sha256-M4qOdxR97VhquB85IgimYKZqix2WoRIZcLSIlVK1xDY="; hash = "sha256-M4qOdxR97VhquB85IgimYKZqix2WoRIZcLSIlVK1xDY=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
aioconsole aioconsole
@ -46,9 +45,7 @@ buildPythonPackage rec {
# https://github.com/abmantis/whirlpool-sixth-sense/issues/15 # https://github.com/abmantis/whirlpool-sixth-sense/issues/15
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "whirlpool" ];
"whirlpool"
];
meta = with lib; { meta = with lib; {
description = "Python library for Whirlpool 6th Sense appliances"; description = "Python library for Whirlpool 6th Sense appliances";