lol

python313Packages.unstructured: 0.16.15 -> 0.17.2

Diff: https://github.com/Unstructured-IO/unstructured/compare/refs/tags/0.16.15...0.17.2

Changelog: https://github.com/Unstructured-IO/unstructured/blob/0.17.2/CHANGELOG.md

+15 -10
+15 -10
pkgs/development/python-modules/unstructured/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 5 6 + # build-system 7 + setuptools, 8 + 6 9 # core networking and async dependencies 7 10 anyio, 8 11 backoff, ··· 30 33 olefile, 31 34 orderly-set, 32 35 python-dateutil, 33 - # python-iso639, 36 + python-iso639, 34 37 python-magic, 35 - # python-oxmsg, 38 + python-oxmsg, 36 39 rapidfuzz, 37 40 regex, 38 41 soupsieve, ··· 65 68 pypandoc, 66 69 pypdf, 67 70 python-docx, 68 - # unstructured-client, 71 + unstructured-client, 69 72 # unstructured-pytesseract, 70 73 # optional dependencies 71 74 # csv ··· 113 116 grpcio, 114 117 }: 115 118 let 116 - version = "0.16.15"; 119 + version = "0.17.2"; 117 120 in 118 121 buildPythonPackage { 119 122 pname = "unstructured"; 120 123 inherit version; 121 - format = "setuptools"; 124 + pyproject = true; 122 125 123 126 src = fetchFromGitHub { 124 127 owner = "Unstructured-IO"; 125 128 repo = "unstructured"; 126 129 tag = version; 127 - hash = "sha256-Wp51LOgM/zE81324Qzu83XGupUMAzz2wn+COmNq95H8="; 130 + hash = "sha256-DbNfhJzpPJObACWSc2r16kjIE2X/CrOCiT7fdgGNwIg="; 128 131 }; 129 132 130 - propagatedBuildInputs = [ 133 + build-system = [ setuptools ]; 134 + 135 + dependencies = [ 131 136 # Base dependencies 132 137 anyio 133 138 backoff ··· 163 168 pycparser 164 169 pypdf 165 170 python-dateutil 166 - # python-iso639 171 + python-iso639 167 172 python-magic 168 - # python-oxmsg 173 + python-oxmsg 169 174 rapidfuzz 170 175 regex 171 176 requests ··· 176 181 tqdm 177 182 typing-extensions 178 183 typing-inspect 179 - # unstructured-client 184 + unstructured-client 180 185 urllib3 181 186 webencodings 182 187 wrapt