summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/lm-format-enforcer/default.nix
blob: 78487f2b8a564cae633366e7a8bec3edde55ea62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pydantic,
  interegular,
  pyyaml,
  poetry-core,
}:

buildPythonPackage rec {
  pname = "lm-format-enforcer";
  version = "0.11.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "noamgat";
    repo = "lm-format-enforcer";
    tag = "v${version}";
    hash = "sha256-aUZo7Nlk5A9SRyQFFGhy3LAJO29ygRFwNC4WbRuXvYE=";
  };

  build-system = [ poetry-core ];

  dependencies = [
    interegular
    pydantic
    pyyaml
  ];

  doCheck = false; # most tests require internet access

  pythonImportsCheck = [ "lmformatenforcer" ];

  meta = {
    description = "Enforce the output format (JSON Schema, Regex etc) of a language model";
    changelog = "https://github.com/noamgat/lm-format-enforcer/releases/tag/${src.tag}";
    homepage = "https://github.com/noamgat/lm-format-enforcer";
    license = lib.licenses.mit;
  };
}