python311Packages.python-tado: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-07 22:46:56 +02:00
parent dd6ef3cd1b
commit dec1629c3d

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-KcYxUKQuO7TLS4YPg2mrBjP+DMnvZeJokGzwmeM/CvE=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
requests
];
dependencies = [ requests ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"PyTado"
];
pythonImportsCheck = [ "PyTado" ];
meta = with lib; {
description = "Python binding for Tado web API. Pythonize your central heating!";