python312Packages.oemthermostat: format with nixfmt

This commit is contained in:
Fabian Affolter
2024-05-12 15:18:39 +02:00
parent 01ec2ee0e7
commit 964f774eeb
@@ -1,10 +1,11 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, requests
, setuptools-scm
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
requests,
setuptools-scm,
}:
buildPythonPackage rec {
@@ -21,21 +22,13 @@ buildPythonPackage rec {
hash = "sha256-vrMw3/X8MtejO1WyUA1DOlfVCPTCPgcK5p3+OlTWcM4=";
};
build-system = [
setuptools-scm
];
build-system = [ setuptools-scm ];
dependencies = [
requests
];
dependencies = [ requests ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"oemthermostat"
];
pythonImportsCheck = [ "oemthermostat" ];
meta = with lib; {
description = "Python module to interact with OpenEnergyMonitor thermostats";