kdePackages.kirigami-addons: 1.5.0 -> 1.6.0 (#360539)
[NixPkgs.git] / pkgs / development / python-modules / llama-index-readers-txtai / default.nix
blob6cf4a9fb87f4ae43d0761ee3753188cf493ba0d9
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   llama-index-core,
6   poetry-core,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "llama-index-readers-txtai";
12   version = "0.2.0";
13   pyproject = true;
15   disabled = pythonOlder "3.8";
17   src = fetchPypi {
18     pname = "llama_index_readers_txtai";
19     inherit version;
20     hash = "sha256-jaCg3TeMkBKHtZRxpa5KrQb+uGP95qN1nWtrE08Oq98=";
21   };
23   build-system = [ poetry-core ];
25   dependencies = [ llama-index-core ];
27   # Tests are only available in the mono repo
28   doCheck = false;
30   pythonImportsCheck = [ "llama_index.readers.txtai" ];
32   meta = with lib; {
33     description = "LlamaIndex Readers Integration for txtai";
34     homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-txtai";
35     license = licenses.mit;
36     maintainers = with maintainers; [ fab ];
37   };