python312Packages.pytrydan: format witrh nixfmt
This commit is contained in:
parent
bfa6d81029
commit
66d3e3b8eb
1 changed files with 17 additions and 20 deletions
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue