Files
nixpkgs/pkgs/development/python-modules/lm-format-enforcer/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

42 lines
885 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 = {
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;
};
}