python312Packages.pyfibaro: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-08 01:02:39 +02:00
parent 52fc9bf1b5
commit 67729a808a
1 changed files with 12 additions and 17 deletions

View File

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