Unverified Commit 59c18ec8 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #293192 from fabaff/langchain-bump

python311Packages.langchain-community: 0.0.24 -> 0.0.25, python311Packages.langchain: 0.1.9 -> 0.1.10
parents 59b759bb 81c9524d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@

buildPythonPackage rec {
  pname = "langchain-community";
  version = "0.0.24";
  version = "0.0.25";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -25,7 +25,7 @@ buildPythonPackage rec {
  src = fetchPypi {
    pname = "langchain_community";
    inherit version;
    hash = "sha256-/WCfbJYsykt7dfIVnx+/dLFP3UUBHuK+U+ldtOZ4g38=";
    hash = "sha256-tsjBTNbsJjXlHjl0v3io3juVm77bSvVarRZPjPOS8MU=";
  };

  nativeBuildInputs = [
+45 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
, langchain-core
, lxml
, pythonOlder
}:

buildPythonPackage rec {
  pname = "langchain-text-splitters";
  version = "0.0.1";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchPypi {
    pname = "langchain_text_splitters";
    inherit version;
    hash = "sha256-rEWfqYeZ9RF61UJakzCyGWEyHjC8GaKi+fdh3a3WKqE=";
  };

  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    langchain-core
    lxml
  ];

  # PyPI source does not have tests
  doCheck = false;

  pythonImportsCheck = [
    "langchain_text_splitters"
  ];

  meta = with lib; {
    description = "Build context-aware reasoning applications";
    homepage = "https://github.com/langchain-ai/langchain/tree/master/libs/text-splitters";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}
+4 −2
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
, langsmith
, langchain-core
, langchain-community
, langchain-text-splitters
, numpy
, pydantic
, pyyaml
@@ -51,7 +52,7 @@

buildPythonPackage rec {
  pname = "langchain";
  version = "0.1.9";
  version = "0.1.10";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -60,7 +61,7 @@ buildPythonPackage rec {
    owner = "langchain-ai";
    repo = "langchain";
    rev = "refs/tags/v${version}";
    hash = "sha256-AgEze4JUo3i6HCg541tz/gV6g+zrueyOljy/TXUYBV4=";
    hash = "sha256-wSm+n66CWvvR1ljrmmmE1wOX/CaCNgf8AKBZl5+I07A=";
  };

  sourceRoot = "${src.name}/libs/langchain";
@@ -79,6 +80,7 @@ buildPythonPackage rec {
    jsonpatch
    langchain-community
    langchain-core
    langchain-text-splitters
    langsmith
    numpy
    pydantic
+2 −0
Original line number Diff line number Diff line
@@ -6298,6 +6298,8 @@ self: super: with self; {
  langchain-core = callPackage ../development/python-modules/langchain-core { };
  langchain-text-splitters = callPackage ../development/python-modules/langchain-text-splitters { };
  langcodes = callPackage ../development/python-modules/langcodes { };
  langdetect = callPackage ../development/python-modules/langdetect { };