python312Packages.pytrydan: format witrh nixfmt

This commit is contained in:
Fabian Affolter 2024-05-10 09:16:13 +02:00
parent bfa6d81029
commit 66d3e3b8eb

View file

@ -1,17 +1,18 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, httpx fetchFromGitHub,
, orjson httpx,
, poetry-core orjson,
, pytest-asyncio poetry-core,
, pytestCheckHook pytest-asyncio,
, pythonOlder pytestCheckHook,
, respx pythonOlder,
, rich respx,
, syrupy rich,
, tenacity syrupy,
, typer tenacity,
typer,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -33,9 +34,7 @@ buildPythonPackage rec {
--replace-fail " --cov=pytrydan --cov-report=term-missing:skip-covered" "" --replace-fail " --cov=pytrydan --cov-report=term-missing:skip-covered" ""
''; '';
build-system = [ build-system = [ poetry-core ];
poetry-core
];
dependencies = [ dependencies = [
httpx httpx
@ -52,9 +51,7 @@ buildPythonPackage rec {
syrupy syrupy
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "pytrydan" ];
"pytrydan"
];
meta = with lib; { meta = with lib; {
description = "Library to interface with V2C EVSE Trydan"; description = "Library to interface with V2C EVSE Trydan";