nixpkgs/pkgs/development/python-modules/langchain-mongodb/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
1.6 KiB
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
nix-update-script,
# build-system
poetry-core,
# dependencies
langchain-core,
numpy,
pymongo,
freezegun,
httpx,
langchain,
pytest-asyncio,
pytestCheckHook,
pytest-mock,
syrupy,
}:
buildPythonPackage rec {
pname = "langchain-mongodb";
version = "0.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "langchain-ai";
repo = "langchain";
tag = "langchain-mongodb==${version}";
hash = "sha256-Jd9toXkS9dGtSIrJQ/5W+swV1z2BJOJKBtkyGzj3oSc=";
};
sourceRoot = "${src.name}/libs/partners/mongodb";
build-system = [ poetry-core ];
pythonRelaxDeps = [
# Each component release requests the exact latest core.
2025-06-02 15:54:57 +02:00
# That prevents us from updating individual components.
"langchain-core"
"numpy"
];
dependencies = [
langchain-core
numpy
pymongo
];
nativeCheckInputs = [
freezegun
httpx
langchain
pytest-asyncio
pytestCheckHook
pytest-mock
syrupy
];
pytestFlagsArray = [ "tests/unit_tests" ];
pythonImportsCheck = [ "langchain_mongodb" ];
passthru.updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"^langchain-mongodb==([0-9.]+)$"
];
};
meta = {
changelog = "https://github.com/langchain-ai/langchain/releases/tag/langchain-mongodb==${version}";
description = "Integration package connecting MongoDB and LangChain";
homepage = "https://github.com/langchain-ai/langchain/tree/master/libs/partners/mongodb";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
natsukium
sarahec
];
};
}