python312Packages.bring-api: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-11 09:33:35 +02:00
parent 54f7f1fe10
commit 156e0d0812

View File

@ -1,13 +1,14 @@
{ lib {
, aiohttp lib,
, aioresponses aiohttp,
, buildPythonPackage aioresponses,
, fetchFromGitHub buildPythonPackage,
, pytest-asyncio fetchFromGitHub,
, pytestCheckHook pytest-asyncio,
, python-dotenv pytestCheckHook,
, pythonOlder python-dotenv,
, setuptools pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -24,13 +25,9 @@ buildPythonPackage rec {
hash = "sha256-fhZMn0v908VzV+JLuS8tM+BPKJBoj77vEh1pINL4Cco="; hash = "sha256-fhZMn0v908VzV+JLuS8tM+BPKJBoj77vEh1pINL4Cco=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [ aiohttp ];
aiohttp
];
nativeCheckInputs = [ nativeCheckInputs = [
aioresponses aioresponses
@ -39,9 +36,7 @@ buildPythonPackage rec {
python-dotenv python-dotenv
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "bring_api" ];
"bring_api"
];
meta = with lib; { meta = with lib; {
description = "Module to access the Bring! shopping lists API"; description = "Module to access the Bring! shopping lists API";