Commit ccad6d83 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.pydiscovergy: format with nixfmt

parent 7d959fa0
Loading
Loading
Loading
Loading
+19 −24
Original line number Diff line number Diff line
{ lib
, authlib
, buildPythonPackage
, fetchFromGitHub
, httpx
, mashumaro
, orjson
, pytest-asyncio
, pytest-httpx
, poetry-core
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, pytz
, respx
{
  lib,
  authlib,
  buildPythonPackage,
  fetchFromGitHub,
  httpx,
  mashumaro,
  orjson,
  pytest-asyncio,
  pytest-httpx,
  poetry-core,
  pytestCheckHook,
  pythonOlder,
  pythonRelaxDepsHook,
  pytz,
  respx,
}:

buildPythonPackage rec {
@@ -33,13 +34,9 @@ buildPythonPackage rec {
    sed -i '/addopts =/d' pyproject.toml
  '';

  build-system = [
    poetry-core
  ];
  build-system = [ poetry-core ];

  nativeBuildInputs = [
    pythonRelaxDepsHook
  ];
  nativeBuildInputs = [ pythonRelaxDepsHook ];

  dependencies = [
    authlib
@@ -56,9 +53,7 @@ buildPythonPackage rec {
    respx
  ];

  pythonImportsCheck = [
    "pydiscovergy"
  ];
  pythonImportsCheck = [ "pydiscovergy" ];

  meta = with lib; {
    description = "Library for interacting with the Discovergy API";