python312Packages.hass-nabucasa: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-04 22:06:56 +02:00
parent eb0b1a9e15
commit a2ab670879

View File

@ -1,23 +1,24 @@
{ lib {
, acme lib,
, aiohttp acme,
, atomicwrites-homeassistant aiohttp,
, attrs atomicwrites-homeassistant,
, buildPythonPackage attrs,
, ciso8601 buildPythonPackage,
, cryptography ciso8601,
, fetchFromGitHub cryptography,
, pycognito fetchFromGitHub,
, pyjwt pycognito,
, pytest-aiohttp pyjwt,
, pytest-timeout pytest-aiohttp,
, pytestCheckHook pytest-timeout,
, pythonOlder pytestCheckHook,
, pythonRelaxDepsHook pythonOlder,
, setuptools pythonRelaxDepsHook,
, snitun setuptools,
, syrupy snitun,
, xmltodict syrupy,
xmltodict,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -34,17 +35,11 @@ buildPythonPackage rec {
hash = "sha256-8KxnS6LTK077/hr81JOiOj8GaNWBXO8XlvpYBm/sZbI="; hash = "sha256-8KxnS6LTK077/hr81JOiOj8GaNWBXO8XlvpYBm/sZbI=";
}; };
pythonRelaxDeps = [ pythonRelaxDeps = [ "acme" ];
"acme"
];
nativeBuildInputs = [ nativeBuildInputs = [ pythonRelaxDepsHook ];
pythonRelaxDepsHook
];
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
acme acme
@ -66,9 +61,7 @@ buildPythonPackage rec {
xmltodict xmltodict
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "hass_nabucasa" ];
"hass_nabucasa"
];
meta = with lib; { meta = with lib; {
description = "Python module for the Home Assistant cloud integration"; description = "Python module for the Home Assistant cloud integration";