Unverified Commit 753ff924 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python3Packages.docling-core: 2.50.1 -> 2.60.2 (#483157)

parents e9d0a94a 2ef0d215
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
@@ -18,10 +18,12 @@
  semchunk,
  tabulate,
  transformers,
  tree-sitter,
  typer,
  typing-extensions,

  # tests
  gitpython,
  jsondiff,
  pytestCheckHook,
  requests,
@@ -29,14 +31,14 @@

buildPythonPackage rec {
  pname = "docling-core";
  version = "2.50.1";
  version = "2.60.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "docling-project";
    repo = "docling-core";
    tag = "v${version}";
    hash = "sha256-pLIWskl5nXdOC5UwvfJ3Yhl8qV6jg42P89gLj7ASpTA=";
    hash = "sha256-KrWeh5b3w1dBk3l7S1FpgONWqP9gS6nhbLIly3Nbtvg=";
  };

  build-system = [
@@ -55,6 +57,7 @@ buildPythonPackage rec {
    semchunk
    tabulate
    transformers
    tree-sitter
    typer
    typing-extensions
  ];
@@ -68,6 +71,7 @@ buildPythonPackage rec {
  ];

  nativeCheckInputs = [
    gitpython
    jsondiff
    pytestCheckHook
    requests
@@ -75,13 +79,15 @@ buildPythonPackage rec {

  disabledTestPaths = [
    # attempts to download models
    "test/test_code_chunker.py"
    "test/test_code_chunking_strategy.py"
    "test/test_hybrid_chunker.py"
  ];

  meta = {
    changelog = "https://github.com/DS4SD/docling-core/blob/${src.tag}/CHANGELOG.md";
    changelog = "https://github.com/docling-project/docling-core/blob/${src.tag}/CHANGELOG.md";
    description = "Python library to define and validate data types in Docling";
    homepage = "https://github.com/DS4SD/docling-core";
    homepage = "https://github.com/docling-project/docling-core";
    license = lib.licenses.mit;
    maintainers = [ ];
  };