python310Packages.unstructured 0 -> 1 attrpath: python310Packages.unstructured Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/xd2q2fjml9swnvvpjbs6f6g5gn16nmgz-packages.json.drv building '/nix/store/xd2q2fjml9swnvvpjbs6f6g5gn16nmgz-packages.json.drv'... Going to be running update for following packages: - python3.10-unstructured-0.10.12 Press Enter key to continue... Running update for: - python3.10-unstructured-0.10.12: UPDATING ... - python3.10-unstructured-0.10.12: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/unstructured/default.nix b/pkgs/development/python-modules/unstructured/default.nix index 2754f192d506..8b8ad8121706 100644 --- a/pkgs/development/python-modules/unstructured/default.nix +++ b/pkgs/development/python-modules/unstructured/default.nix @@ -56,7 +56,7 @@ , grpcio }: let - version = "0.10.12"; + version = "0.10.23"; optional-dependencies = { huggingflace = [ langdetect @@ -90,7 +90,7 @@ buildPythonPackage { owner = "Unstructured-IO"; repo = "unstructured"; rev = "refs/tags/${version}"; - hash = "sha256-v5hNl93dUEo90Hgm5u2N7tB1W5fnu+Pmnv+iw7QyQKM="; + hash = "sha256-MfnMu7YW8G1G0sKNvum4k6hvNMRmpXp9YwaDHEj/mYE="; }; propagatedBuildInputs = [ No auto update branch exists Old version 0.10.12" not present in staging derivation file with contents: { 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.10.14"; 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-3oLnZp6DYR4odqwsVq5B7KVgdzKZrSoGQWnvNI0fKMs="; }; 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 ]; }; }