Commit 444887d0 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.aiounifi: format with nixfmt

parent d0e24b16
Loading
Loading
Loading
Loading
+17 −22
Original line number Diff line number Diff line
{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, fetchFromGitHub
, orjson
, pytest-aiohttp
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, segno
, setuptools
, trustme
{
  lib,
  aiohttp,
  aioresponses,
  buildPythonPackage,
  fetchFromGitHub,
  orjson,
  pytest-aiohttp,
  pytest-asyncio,
  pytestCheckHook,
  pythonOlder,
  segno,
  setuptools,
  trustme,
}:

buildPythonPackage rec {
@@ -35,9 +36,7 @@ buildPythonPackage rec {
    sed -i '/--cov=/d' pyproject.toml
  '';

  build-system = [
    setuptools
  ];
  build-system = [ setuptools ];

  dependencies = [
    aiohttp
@@ -53,13 +52,9 @@ buildPythonPackage rec {
    trustme
  ];

  pytestFlagsArray = [
    "--asyncio-mode=auto"
  ];
  pytestFlagsArray = [ "--asyncio-mode=auto" ];

  pythonImportsCheck = [
    "aiounifi"
  ];
  pythonImportsCheck = [ "aiounifi" ];

  meta = with lib; {
    description = "Python library for communicating with Unifi Controller API";