evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / llama-index-llms-ollama / default.nix
blob04bb0ddd0caaacfdd6fb97338371e6359a67aee4
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   llama-index-core,
6   ollama,
7   poetry-core,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "llama-index-llms-ollama";
13   version = "0.3.4";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     pname = "llama_index_llms_ollama";
20     inherit version;
21     hash = "sha256-Vt9uGIcIGvRSL57DK+LUYy2NTyYZ9yqnHqYJZiMeVKA=";
22   };
24   build-system = [ poetry-core ];
26   dependencies = [
27     llama-index-core
28     ollama
29   ];
31   # Tests are only available in the mono repo
32   doCheck = false;
34   pythonImportsCheck = [ "llama_index.llms.ollama" ];
36   meta = with lib; {
37     description = "LlamaIndex LLMS Integration for ollama";
38     homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/llms/llama-index-llms-ollama";
39     license = licenses.mit;
40     maintainers = with maintainers; [ fab ];
41   };