mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +03:00
python312Packages.langchain-aws: 0.1.17 -> 0.2.0
Diff: https://github.com/langchain-ai/langchain-aws/compare/refs/tags/v0.1.17...v0.2.0 Changelog: https://github.com/langchain-ai/langchain-aws/releases/tag/v0.2.0
This commit is contained in:
parent
4e835ba3b4
commit
db1cd9f96f
1 changed files with 11 additions and 5 deletions
|
@ -2,25 +2,31 @@
|
||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
|
|
||||||
|
# build-system
|
||||||
|
poetry-core,
|
||||||
|
|
||||||
|
# dependencies
|
||||||
boto3,
|
boto3,
|
||||||
langchain-core,
|
langchain-core,
|
||||||
numpy,
|
numpy,
|
||||||
poetry-core,
|
|
||||||
pytestCheckHook,
|
# tests
|
||||||
pytest-asyncio,
|
|
||||||
langchain-standard-tests,
|
langchain-standard-tests,
|
||||||
|
pytest-asyncio,
|
||||||
|
pytestCheckHook,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "langchain-aws";
|
pname = "langchain-aws";
|
||||||
version = "0.1.17";
|
version = "0.2.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "langchain-ai";
|
owner = "langchain-ai";
|
||||||
repo = "langchain-aws";
|
repo = "langchain-aws";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-n9nQheuUZMrjZMpR3aqbrRb/AhcgiF4CFO9ROh9aFNc=";
|
hash = "sha256-P9CfAVpKh7djhUQc3DyyJTWqs9RbrTeLyynLei0x00o=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue