python311Packages.automate-home: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-22 13:12:44 +02:00
parent 49e157ab06
commit 2101d569c7

View File

@ -1,15 +1,16 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
, apscheduler
, hiredis
, aioredis
, ephem
, setuptools
, pytz
, pyyaml
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pythonOlder,
apscheduler,
hiredis,
aioredis,
ephem,
setuptools,
pytz,
pyyaml,
}:
buildPythonPackage rec {
@ -31,9 +32,7 @@ buildPythonPackage rec {
--replace-fail "aioredis==1.3.1" "aioredis"
'';
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
apscheduler
@ -44,13 +43,9 @@ buildPythonPackage rec {
pyyaml
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"home"
];
pythonImportsCheck = [ "home" ];
meta = with lib; {
description = "Python module to automate (home) devices";