94 lines
1.7 KiB
Nix
94 lines
1.7 KiB
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|