c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
145 lines
2.7 KiB
Nix
145 lines
2.7 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
# propagated build inputs
|
|
, chardet
|
|
, filetype
|
|
, lxml
|
|
, msg-parser
|
|
, nltk
|
|
, openpyxl
|
|
, pandas
|
|
, pdf2image
|
|
, pdfminer-six
|
|
, pillow
|
|
, pypandoc
|
|
, python-docx
|
|
, python-pptx
|
|
, python-magic
|
|
, markdown
|
|
, requests
|
|
, tabulate
|
|
, xlrd
|
|
# optional-dependencies
|
|
, langdetect
|
|
, sacremoses
|
|
, sentencepiece
|
|
, torch
|
|
, transformers
|
|
, unstructured-inference
|
|
, s3fs
|
|
, fsspec
|
|
, adlfs
|
|
# , discord-py
|
|
, pygithub
|
|
, python-gitlab
|
|
, praw
|
|
, slack-sdk
|
|
, wikipedia
|
|
, google-api-python-client
|
|
# , gcsfs
|
|
, elasticsearch8
|
|
, jq
|
|
# , dropboxdrivefs
|
|
, atlassian-python-api
|
|
# test dependencies
|
|
, pytestCheckHook
|
|
, black
|
|
, coverage
|
|
, click
|
|
, freezegun
|
|
# , label-studio-sdk
|
|
, mypy
|
|
, pytest-cov
|
|
, pytest-mock
|
|
, vcrpy
|
|
, grpcio
|
|
}:
|
|
let
|
|
version = "0.12.5";
|
|
optional-dependencies = {
|
|
huggingflace = [
|
|
langdetect
|
|
sacremoses
|
|
sentencepiece
|
|
torch
|
|
transformers
|
|
];
|
|
local-inference = [ unstructured-inference ];
|
|
s3 = [ s3fs fsspec ];
|
|
azure = [ adlfs fsspec ];
|
|
discord = [ ]; # discord-py
|
|
github = [ pygithub ];
|
|
gitlab = [ python-gitlab ];
|
|
reddit = [ praw ];
|
|
slack = [ slack-sdk ];
|
|
wikipedia = [ wikipedia ];
|
|
google-drive = [ google-api-python-client ];
|
|
gcs = []; # gcsfs fsspec
|
|
elasticsearch = [ elasticsearch8 jq ];
|
|
dropbox = []; # dropboxdrivefs fsspec
|
|
confluence = [ atlassian-python-api ];
|
|
};
|
|
in
|
|
buildPythonPackage {
|
|
pname = "unstructured";
|
|
inherit version;
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Unstructured-IO";
|
|
repo = "unstructured";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-69GukU2R38tM43vAk+l9vjypgjTS/Bcmcdcj1HXnzv4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
chardet
|
|
filetype
|
|
lxml
|
|
msg-parser
|
|
nltk
|
|
openpyxl
|
|
pandas
|
|
pdf2image
|
|
pdfminer-six
|
|
pillow
|
|
pypandoc
|
|
python-docx
|
|
python-pptx
|
|
python-magic
|
|
markdown
|
|
requests
|
|
tabulate
|
|
xlrd
|
|
];
|
|
|
|
pythonImportsCheck = [ "unstructured" ];
|
|
|
|
# test try to download punkt from nltk
|
|
# figure out how to make it available to enable the tests
|
|
doCheck = false;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
black
|
|
coverage
|
|
click
|
|
freezegun
|
|
mypy
|
|
pytest-cov
|
|
pytest-mock
|
|
vcrpy
|
|
grpcio
|
|
];
|
|
|
|
passthru.optional-dependencies = optional-dependencies;
|
|
|
|
meta = with lib; {
|
|
description = "Open source libraries and APIs to build custom preprocessing pipelines for labeling, training, or production machine learning pipelines";
|
|
homepage = "https://github.com/Unstructured-IO/unstructured";
|
|
changelog = "https://github.com/Unstructured-IO/unstructured/blob/${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
};
|
|
}
|