python310Packages.unstructured-api-tools: init at 0.10.10

This commit is contained in:
happysalada 2023-07-26 17:31:52 +09:00 committed by Yt
parent 6955151120
commit 242c4025ed
2 changed files with 95 additions and 0 deletions

View file

@ -0,0 +1,93 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
# propagated build inputs
, click
, fastapi
, jinja2
, mypy
, nbconvert
, python-multipart
, pandas
, types-requests
, types-ujson
, uvicorn
, autoflake
# native check inputs
, pytestCheckHook
, black
, coverage
, flake8
, httpx
, ipython
, pytest-cov
, requests
, requests-toolbelt
, nbdev
, pytest-mock
}:
let
version = "0.10.10";
in
buildPythonPackage {
pname = "unstructured-api-tools";
inherit version;
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Unstructured-IO";
repo = "unstructured-api-tools";
rev = version;
hash = "sha256-CJ5bsII24hw03JN4+8VywYRYCsnMlYHjmaIIn0zttIs=";
};
propagatedBuildInputs = [
click
fastapi
jinja2
mypy
nbconvert
python-multipart
pandas
types-requests
types-ujson
uvicorn
autoflake
] ++ uvicorn.optional-dependencies.standard;
pythonImportsCheck = [ "unstructured_api_tools" ];
# test require file generation but it complains about a missing file mypy
doCheck = false;
# preCheck = ''
# substituteInPlace Makefile \
# --replace "PYTHONPATH=." "" \
# --replace "mypy" "${mypy}/bin/mypy"
# make generate-test-api
# '';
nativeCheckInputs = [
pytestCheckHook
black
coverage
flake8
httpx
ipython
pytest-cov
requests
requests-toolbelt
nbdev
pytest-mock
];
meta = with lib; {
description = "";
homepage = "https://github.com/Unstructured-IO/unstructured-api-tools";
changelog = "https://github.com/Unstructured-IO/unstructured-api-tools/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ happysalada ];
};
}

View file

@ -13129,6 +13129,8 @@ self: super: with self; {
unstructured = callPackage ../development/python-modules/unstructured { };
unstructured-api-tools = callPackage ../development/python-modules/unstructured-api-tools { };
unstructured-inference = callPackage ../development/python-modules/unstructured-inference { };
untangle = callPackage ../development/python-modules/untangle { };