mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00

Diff: https://github.com/langchain-ai/langchain/compare/refs/tags/langchain-text-splitters==0.2.2...0.2.4 Changelog: https://github.com/langchain-ai/langchain/releases/tag/langchain-text-splitters==0.2.4
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
poetry-core,
|
|
|
|
# dependencies
|
|
langchain-core,
|
|
|
|
# tests
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "langchain-text-splitters";
|
|
version = "0.2.4";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "langchain-ai";
|
|
repo = "langchain";
|
|
rev = "refs/tags/langchain-text-splitters==${version}";
|
|
hash = "sha256-8n5eImRXOG/3tN/59Gd2/GpoGpt7P2ABj0T4pJi6xrk=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/libs/text-splitters";
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [ langchain-core ];
|
|
|
|
pythonImportsCheck = [ "langchain_text_splitters" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlagsArray = [ "tests/unit_tests" ];
|
|
|
|
passthru = {
|
|
inherit (langchain-core) updateScript;
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/langchain-ai/langchain/releases/tag/langchain-text-splitters==${version}";
|
|
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 ];
|
|
};
|
|
}
|