Files
nixpkgs/pkgs/development/python-modules/llguidance/default.nix
T
2026-03-01 19:58:14 +00:00

109 lines
2.3 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
# nativeBuildInputs
cargo,
pkg-config,
rustPlatform,
rustc,
# buildInputs
oniguruma,
openssl,
# tests
pytestCheckHook,
torch,
transformers,
}:
buildPythonPackage (finalAttrs: {
pname = "llguidance";
version = "1.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "guidance-ai";
repo = "llguidance";
tag = "v${finalAttrs.version}";
hash = "sha256-jbNKNygJ0T1YWxQQ25gowqx7u2cIJDNToLTmvuJyAzU=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit (finalAttrs) src pname version;
hash = "sha256-mKQC3DXoCD/478EHj0bTMBXvcKYEbgzUd0cuwmJbHJA=";
};
nativeBuildInputs = [
cargo
pkg-config
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
rustc
];
buildInputs = [
oniguruma
openssl
];
env = {
RUSTONIG_SYSTEM_LIBONIG = true;
};
pythonImportsCheck = [
"llguidance"
"llguidance._lib"
];
nativeCheckInputs = [
pytestCheckHook
torch
transformers
];
# Prevent python from loading the package from $src instead of the $out
preCheck = ''
rm -r python/llguidance
'';
disabledTests = [
# Require internet access (https://huggingface.co)
"test_grammar"
"test_incomplete_tokenizer"
"test_par_errors"
"test_par_grammar"
"test_tokenize_partial_basic"
"test_tokenize_partial_docs"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# torch._inductor.exc.CppCompileError: C++ compile error
# OpenMP support not found.
"test_mask_data_torch"
];
disabledTestPaths = [
# Require internet access (https://huggingface.co)
"python/torch_tests/test_hf.py"
"python/torch_tests/test_llamacpp.py"
"python/torch_tests/test_tiktoken.py"
"scripts/tokenizer_test.py"
]
++ lib.optionals (pythonAtLeast "3.14") [
# RuntimeError: torch.compile is not supported on Python 3.14+
"python/torch_tests/test_bitmask.py"
];
meta = {
description = "Super-fast Structured Outputs";
homepage = "https://github.com/guidance-ai/llguidance";
changelog = "https://github.com/guidance-ai/llguidance/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
})