python312Packages.youless-api: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-13 20:15:46 +02:00
parent d8b1cfeebb
commit a284111fb8

View File

@ -1,10 +1,11 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, requests
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
requests,
setuptools,
}:
buildPythonPackage rec {
@ -21,21 +22,13 @@ buildPythonPackage rec {
hash = "sha256-J3YRRVcA4LYxuJMi//LJO8Qt8hapJruZGzONODE3SsQ=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
requests
];
dependencies = [ requests ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"youless_api"
];
pythonImportsCheck = [ "youless_api" ];
meta = with lib; {
description = "Python library for YouLess sensors";