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

python312Packages.instructor: format with nixfmt

parent 5e461295
Loading
Loading
Loading
Loading
+23 −26
Original line number Diff line number Diff line
{ lib
, aiohttp
, anthropic
, buildPythonPackage
, docstring-parser
, fetchFromGitHub
, openai
, poetry-core
, pydantic
, pytest-examples
, pytest-asyncio
, pytestCheckHook
, fastapi
, diskcache
, redis
, pythonOlder
, pythonRelaxDepsHook
, rich
, tenacity
, typer
{
  lib,
  aiohttp,
  anthropic,
  buildPythonPackage,
  docstring-parser,
  fetchFromGitHub,
  openai,
  poetry-core,
  pydantic,
  pytest-examples,
  pytest-asyncio,
  pytestCheckHook,
  fastapi,
  diskcache,
  redis,
  pythonOlder,
  pythonRelaxDepsHook,
  rich,
  tenacity,
  typer,
}:

buildPythonPackage rec {
@@ -39,13 +40,9 @@ buildPythonPackage rec {
    "pydantic"
  ];

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

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

  dependencies = [
    aiohttp