Files
nixpkgs/pkgs/development/python-modules/lm-format-enforcer/default.nix
T
Martin Weinelt 7d536b32d4 python3Packages.lm-format-enforcer: 0.10.11 -> 0.10.12
https://github.com/noamgat/lm-format-enforcer/releases/tag/v0.10.12

This commit was automatically generated using update-python-libraries.
2025-08-09 19:01:38 +02:00

43 lines
943 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pydantic,
interegular,
pyyaml,
poetry-core,
}:
buildPythonPackage rec {
pname = "lm-format-enforcer";
version = "0.10.12";
pyproject = true;
src = fetchFromGitHub {
owner = "noamgat";
repo = "lm-format-enforcer";
tag = "v${version}";
hash = "sha256-7QNJtuRIuHHSXmiyO+6TDxswsbLET2ucXjhz0j7xTvQ=";
};
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 ];
};
}