mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
83 lines
1.4 KiB
Nix
83 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
pdm-backend,
|
|
|
|
# dependencies
|
|
httpx,
|
|
langchain-core,
|
|
syrupy,
|
|
|
|
# buildInputs
|
|
pytest,
|
|
|
|
# tests
|
|
numpy,
|
|
pytest-asyncio,
|
|
pytest-socket,
|
|
pytestCheckHook,
|
|
|
|
# passthru
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "langchain-tests";
|
|
version = "0.3.19";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "langchain-ai";
|
|
repo = "langchain";
|
|
tag = "langchain-tests==${version}";
|
|
hash = "sha256-DSTngWRFseJ6kSAY7Lxxkh77QFr0jhHxG3mH89QmdxA=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/libs/standard-tests";
|
|
|
|
build-system = [ pdm-backend ];
|
|
|
|
pythonRelaxDeps = [
|
|
# Each component release requests the exact latest core.
|
|
# That prevents us from updating individual components.
|
|
"langchain-core"
|
|
"numpy"
|
|
];
|
|
|
|
dependencies = [
|
|
httpx
|
|
langchain-core
|
|
pytest-asyncio
|
|
pytest-socket
|
|
syrupy
|
|
];
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
pythonImportsCheck = [ "langchain_tests" ];
|
|
|
|
nativeBuildInputs = [
|
|
numpy
|
|
pytestCheckHook
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script {
|
|
extraArgs = [
|
|
"--version-regex"
|
|
"langchain-tests==([0-9.]+)"
|
|
];
|
|
};
|
|
|
|
meta = {
|
|
description = "Build context-aware reasoning applications";
|
|
homepage = "https://github.com/langchain-ai/langchain";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
natsukium
|
|
sarahec
|
|
];
|
|
};
|
|
}
|