about summary refs log tree commit diff
path: root/pkgs/servers/search/khoj/default.nix
blob: 058fe91ab7653cdc247cab4f08d48848e6c52c8f (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{ lib
, stdenv
, fetchFromGitHub
, python3
, qt6
}:

python3.pkgs.buildPythonApplication rec {
  pname = "khoj";
  version = "0.3.0";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "debanjum";
    repo = "khoj";
    rev = "refs/tags/${version}";
    hash = "sha256-9kKK0DXpLfPB2LMnYcC6BKgZaoRsNHBZVe4thI7b9tk=";
  };

  SETUPTOOLS_SCM_PRETEND_VERSION = version;

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace "dateparser == 1.1.1" "dateparser" \
      --replace "defusedxml == 0.7.1" ""defusedxml"" \
      --replace "fastapi == 0.77.1" "fastapi" \
      --replace "jinja2 == 3.1.2" "jinja2" \
      --replace "openai == 0.20.0" "openai" \
      --replace "pillow == 9.3.0" "pillow" \
      --replace "pydantic == 1.9.1" "pydantic" \
      --replace "pyyaml == 6.0" "pyyaml" \
      --replace "pyqt6 == 6.3.1" "pyqt6" \
      --replace "rich >= 13.3.1" "rich" \
      --replace "schedule == 1.1.0" "schedule" \
      --replace "sentence-transformers == 2.2.2" "sentence-transformers" \
      --replace "torch == 1.13.1" "torch" \
      --replace "uvicorn == 0.17.6" "uvicorn"
  '';

  nativeBuildInputs = with python3.pkgs; [
    hatch-vcs
    hatchling
  ] ++ (with qt6; [
    wrapQtAppsHook
  ]);

  buildInputs = lib.optionals stdenv.isLinux [
    qt6.qtwayland
  ] ++ lib.optionals stdenv.isDarwin [
    qt6.qtbase
  ];

  propagatedBuildInputs = with python3.pkgs; [
    dateparser
    defusedxml
    fastapi
    jinja2
    numpy
    openai
    pillow
    pydantic
    pyqt6
    pyyaml
    rich
    schedule
    sentence-transformers
    torch
    uvicorn
  ];

  nativeCheckInputs = with python3.pkgs; [
    pytestCheckHook
  ];

  preCheck = ''
    export HOME=$(mktemp -d)
  '';

  pythonImportsCheck = [
    "khoj"
  ];

  disabledTests = [
    # Tests require network access
    "test_search_with_valid_content_type"
    "test_update_with_valid_content_type"
    "test_regenerate_with_valid_content_type"
    "test_image_search"
    "test_notes_search"
    "test_notes_search_with_only_filters"
    "test_notes_search_with_include_filter"
    "test_notes_search_with_exclude_filter"
    "test_image_metadata"
    "test_image_search"
    "test_image_search_query_truncated"
    "test_image_search_by_filepath"
    "test_asymmetric_setup_with_missing_file_raises_error"
    "test_asymmetric_setup_with_empty_file_raises_error"
    "test_asymmetric_reload"
    "test_asymmetric_setup"
    "test_asymmetric_search"
    "test_entry_chunking_by_max_tokens"
    "test_incremental_update"
  ];

  meta = with lib; {
    description = "Natural Language Search Assistant for your Org-Mode and Markdown notes, Beancount transactions and Photos";
    homepage = "https://github.com/debanjum/khoj";
    changelog = "https://github.com/debanjum/khoj/releases/tag/${version}";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ dit7ya ];
    # src/tcmalloc.cc:333] Attempt to free invalid pointer
    broken = stdenv.isDarwin;
  };
}