Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
942 B
Nix
43 lines
942 B
Nix
{
|
|
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 = with lib; {
|
|
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 = licenses.mit;
|
|
maintainers = with maintainers; [ cfhammill ];
|
|
};
|
|
}
|