From d30f86e69c3f33e40536fbd754b2461648968d8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 29 Mar 2026 21:59:36 -0700 Subject: [PATCH] python3Packages.unstructured-client: 0.42.9 -> 0.42.12 Diff: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.42.9...v0.42.12 Changelog: https://github.com/Unstructured-IO/unstructured-python-client/blob/v0.42.12/RELEASES.md --- .../unstructured-client/default.nix | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/unstructured-client/default.nix b/pkgs/development/python-modules/unstructured-client/default.nix index 1b2d0a98b7cb..7959204b7581 100644 --- a/pkgs/development/python-modules/unstructured-client/default.nix +++ b/pkgs/development/python-modules/unstructured-client/default.nix @@ -3,32 +3,30 @@ buildPythonPackage, cryptography, deepdiff, - eval-type-backport, fetchFromGitHub, + httpcore, httpx, lib, - nest-asyncio, poetry-core, pydantic, pypdf, + pypdfium2, pytest-asyncio, pytestCheckHook, python, - python-dateutil, requests-toolbelt, - typing-inspection, }: buildPythonPackage (finalAttrs: { pname = "unstructured-client"; - version = "0.42.9"; + version = "0.42.12"; pyproject = true; src = fetchFromGitHub { owner = "Unstructured-IO"; repo = "unstructured-python-client"; tag = "v${finalAttrs.version}"; - hash = "sha256-+neZK7I5qjidLlM298TrVl5mGFBdGZdxAdFaJIf0tNk="; + hash = "sha256-xuaGvQEu1QpLn33AUgdWW120pVVNVPL08U/SCA7kGvc="; }; preBuild = '' @@ -44,14 +42,12 @@ buildPythonPackage (finalAttrs: { dependencies = [ aiofiles cryptography - eval-type-backport + httpcore httpx - nest-asyncio pydantic pypdf - python-dateutil + pypdfium2 requests-toolbelt - typing-inspection ]; pythonImportsCheck = [ "unstructured_client" ];