Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python311Packages.llama-index-llms-ollama: format with nixfmt

+10 -15
+10 -15
pkgs/development/python-modules/llama-index-llms-ollama/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , llama-index-core 5 - , poetry-core 6 - , pythonOlder 7 }: 8 9 buildPythonPackage rec { ··· 19 hash = "sha256-ebwZw9p1rfWrGjYd9aHF3CsubKOL1/Ei/mV4AgQxhtk="; 20 }; 21 22 - build-system = [ 23 - poetry-core 24 - ]; 25 26 - dependencies = [ 27 - llama-index-core 28 - ]; 29 30 # Tests are only available in the mono repo 31 doCheck = false; 32 33 - pythonImportsCheck = [ 34 - "llama_index.llms.ollama" 35 - ]; 36 37 meta = with lib; { 38 description = "LlamaIndex LLMS Integration for ollama";
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + llama-index-core, 6 + poetry-core, 7 + pythonOlder, 8 }: 9 10 buildPythonPackage rec { ··· 20 hash = "sha256-ebwZw9p1rfWrGjYd9aHF3CsubKOL1/Ei/mV4AgQxhtk="; 21 }; 22 23 + build-system = [ poetry-core ]; 24 25 + dependencies = [ llama-index-core ]; 26 27 # Tests are only available in the mono repo 28 doCheck = false; 29 30 + pythonImportsCheck = [ "llama_index.llms.ollama" ]; 31 32 meta = with lib; { 33 description = "LlamaIndex LLMS Integration for ollama";