depot/third_party/nixpkgs/pkgs/development/python-modules/clarifai/default.nix
Default email 83627f9931 Project import generated by Copybara.
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
2024-06-24 14:47:55 -04:00

104 lines
2 KiB
Nix

{
lib,
buildPythonPackage,
clarifai-grpc,
fetchFromGitHub,
inquirerpy,
llama-index-core,
numpy,
opencv4,
pandas,
pillow,
pycocotools,
pypdf,
pytestCheckHook,
pythonOlder,
pythonRelaxDepsHook,
pyyaml,
rich,
schema,
setuptools,
tabulate,
tqdm,
tritonclient,
}:
buildPythonPackage rec {
pname = "clarifai";
version = "10.5.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Clarifai";
repo = "clarifai-python";
rev = "refs/tags/${version}";
hash = "sha256-zAjGVICrYgai6GFpcJyigKxn7kNEZKclggR5ktzrCQ0=";
};
pythonRelaxDeps = [ "clarifai-grpc" ];
pythonRemoveDeps = [ "opencv-python" ];
build-system = [ setuptools ];
nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
clarifai-grpc
inquirerpy
llama-index-core
numpy
opencv4
pandas
pillow
pypdf
pyyaml
rich
schema
tabulate
tqdm
tritonclient
];
passthru.optional-dependencies = {
all = [ pycocotools ];
};
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
export HOME=$(mktemp -d)
'';
disabledTests = [
# Test requires network access and API key
"test_export_workflow_general"
];
disabledTestPaths = [
# Tests require network access and API key
"tests/test_app.py"
"tests/test_data_upload.py"
"tests/test_eval.py"
"tests/test_model_predict.py"
"tests/test_model_train.py"
"tests/test_search.py"
"tests/workflow/test_create_delete.py"
"tests/workflow/test_predict.py"
"tests/test_rag.py"
"clarifai/models/model_serving/repo_build/static_files/base_test.py"
];
pythonImportsCheck = [ "clarifai" ];
meta = with lib; {
description = "Clarifai Python Utilities";
homepage = "https://github.com/Clarifai/clarifai-python";
changelog = "https://github.com/Clarifai/clarifai-python/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ natsukium ];
mainProgram = "clarifai";
};
}