70 lines
1.4 KiB
Nix
70 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
hatchling,
|
|
|
|
# dependencies
|
|
langchain-core,
|
|
|
|
# tests
|
|
beautifulsoup4,
|
|
httpx,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
|
|
# passthru
|
|
gitUpdater,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "langchain-text-splitters";
|
|
version = "1.1.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "langchain-ai";
|
|
repo = "langchain";
|
|
tag = "langchain-text-splitters==${finalAttrs.version}";
|
|
hash = "sha256-I5eMc/E7sCxEQG8+jw3E/M4uB7adKU5IMHRsS6pacsA=";
|
|
};
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/libs/text-splitters";
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [ langchain-core ];
|
|
|
|
pythonImportsCheck = [ "langchain_text_splitters" ];
|
|
|
|
nativeCheckInputs = [
|
|
beautifulsoup4
|
|
httpx
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
enabledTestPaths = [ "tests/unit_tests" ];
|
|
|
|
passthru = {
|
|
# python updater script sets the wrong tag
|
|
skipBulkUpdate = true;
|
|
updateScript = gitUpdater {
|
|
rev-prefix = "langchain-text-splitters==";
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/langchain-ai/langchain/releases/tag/${finalAttrs.src.tag}";
|
|
description = "LangChain utilities for splitting into chunks a wide variety of text documents";
|
|
homepage = "https://github.com/langchain-ai/langchain/tree/master/libs/text-splitters";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
fab
|
|
sarahec
|
|
];
|
|
};
|
|
})
|