1{
2 lib,
3 buildPythonPackage,
4 deprecated,
5 fetchPypi,
6 hatchling,
7 pydantic,
8}:
9
10buildPythonPackage rec {
11 pname = "llama-index-instrumentation";
12 version = "0.4.1";
13 pyproject = true;
14
15 src = fetchPypi {
16 pname = "llama_index_instrumentation";
17 inherit version;
18 hash = "sha256-p50N0rq6NPBf9DVNY6mbISMiY1uK+mzJbtAKfhHr/cM=";
19 };
20
21 pythonRelaxDeps = [ "pydantic" ];
22
23 build-system = [ hatchling ];
24
25 dependencies = [
26 deprecated
27 pydantic
28 ];
29
30 pythonImportsCheck = [ "llama_index_instrumentation" ];
31
32 meta = {
33 description = "Support for instrumentation in LlamaIndex applications";
34 homepage = "https://pypi.org/project/llama-index-instrumentation/";
35 license = lib.licenses.mit;
36 maintainers = with lib.maintainers; [ fab ];
37 };
38}