Commit 2101d569 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.automate-home: format with nixfmt

parent 49e157ab
Loading
Loading
Loading
Loading
+16 −21
Original line number Diff line number Diff line
{ 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";