about summary refs log tree commit diff
path: root/pkgs/development/python-modules/llama-index-legacy/default.nix
blob: e490c3db7e88dd00c974bed8e1f4b837da47430e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, llama-index-core
}:

buildPythonPackage rec {
  pname = "llama-index-legacy";

  inherit (llama-index-core) version src meta;

  pyproject = true;

  sourceRoot = "${src.name}/${pname}";

  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    llama-index-core
  ];
}