Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / llama-index-readers-llama-parse / default.nix
blobe24f0d850a9dcd4b1eb431f0b1a8b44ee909cb08
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , llama-index-core
5 , llama-parse
6 , poetry-core
7 , pythonOlder
8 , pythonRelaxDepsHook
9 }:
11 buildPythonPackage rec {
12   pname = "llama-index-readers-llama-parse";
13   version = "0.1.4";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     pname = "llama_index_readers_llama_parse";
20     inherit version;
21     hash = "sha256-eGCLGTyBiJSu/u4KowPwK3+A8uTK8Thmwv07CxAj4sA=";
22   };
24   pythonRelaxDeps = [
25     "llama-parse"
26   ];
28   nativeBuildInputs = [
29     poetry-core
30     pythonRelaxDepsHook
31   ];
33   propagatedBuildInputs = [
34     llama-parse
35     llama-index-core
36   ];
38   # Tests are only available in the mono repo
39   doCheck = false;
41   pythonImportsCheck = [
42     "llama_index.readers.llama_parse"
43   ];
45   meta = with lib; {
46     description = "LlamaIndex Readers Integration for files";
47     homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-llama-parse";
48     license = licenses.mit;
49     maintainers = with maintainers; [ fab ];
50   };