python312Packages.pyfibaro: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-08 01:02:39 +02:00
parent 52fc9bf1b5
commit 67729a808a

View File

@ -1,11 +1,12 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, pytestCheckHook fetchFromGitHub,
, pythonOlder pytestCheckHook,
, requests pythonOlder,
, requests-mock requests,
, setuptools requests-mock,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -22,22 +23,16 @@ buildPythonPackage rec {
hash = "sha256-jsl2Xc6bzN7SVyMnFeCwMpFUEa6xUWGn/T96MrDXlCE="; hash = "sha256-jsl2Xc6bzN7SVyMnFeCwMpFUEa6xUWGn/T96MrDXlCE=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [ requests ];
requests
];
nativeCheckInputs = [ nativeCheckInputs = [
pytestCheckHook pytestCheckHook
requests-mock requests-mock
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "pyfibaro" ];
"pyfibaro"
];
meta = with lib; { meta = with lib; {
description = "Library to access FIBARO Home center"; description = "Library to access FIBARO Home center";