blob: 264dc4473f2869f076fd9c7665b436b174b879dc (
about) (
plain)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
|
{
lib,
python3,
fetchFromGitHub,
nixosTests,
}:
let
python = python3.override {
packageOverrides = final: prev: {
httpx = prev.httpx.overridePythonAttrs (old: rec {
version = "0.27.2";
src = old.src.override {
tag = version;
hash = "sha256-N0ztVA/KMui9kKIovmOfNTwwrdvSimmNkSvvC+3gpck=";
};
});
httpx-socks = prev.httpx-socks.overridePythonAttrs (old: rec {
version = "0.9.2";
src = old.src.override {
tag = "v${version}";
hash = "sha256-PUiciSuDCO4r49st6ye5xPLCyvYMKfZY+yHAkp5j3ZI=";
};
});
starlette = prev.starlette.overridePythonAttrs (old: {
disabledTests = old.disabledTests or [ ] ++ [
# fails in assertion with spacing issue
"test_request_body"
"test_request_stream"
"test_wsgi_post"
];
});
};
};
in
python.pkgs.toPythonModule (
python.pkgs.buildPythonApplication rec {
pname = "searxng";
version = "0-unstable-2025-02-09";
src = fetchFromGitHub {
owner = "searxng";
repo = "searxng";
rev = "a1e2b254677a22f1f8968a06564661ac6203c162";
hash = "sha256-DrSj1wQUWq9xVuQqt0BZ79JgyRS9qJqg1cdYTIBb1A8=";
};
postPatch = ''
sed -i 's/==/>=/' requirements.txt
'';
preBuild =
let
versionString = lib.concatStringsSep "." (
builtins.tail (lib.splitString "-" (lib.removePrefix "0-" version))
);
commitAbbrev = builtins.substring 0 8 src.rev;
in
''
export SEARX_DEBUG="true";
cat > searx/version_frozen.py <<EOF
VERSION_STRING="${versionString}+${commitAbbrev}"
VERSION_TAG="${versionString}+${commitAbbrev}"
DOCKER_TAG="${versionString}-${commitAbbrev}"
GIT_URL="https://github.com/searxng/searxng"
GIT_BRANCH="master"
EOF
'';
dependencies =
with python.pkgs;
[
babel
brotli
certifi
fasttext-predict
flask
flask-babel
isodate
jinja2
lxml
msgspec
pygments
python-dateutil
pyyaml
redis
typer
uvloop
setproctitle
httpx
httpx-socks
markdown-it-py
]
++ httpx.optional-dependencies.http2
++ httpx-socks.optional-dependencies.asyncio;
# tests try to connect to network
doCheck = false;
postInstall = ''
# Create a symlink for easier access to static data
mkdir -p $out/share
ln -s ../${python.sitePackages}/searx/static $out/share/
# copy config schema for the limiter
cp searx/limiter.toml $out/${python.sitePackages}/searx/limiter.toml
'';
passthru = {
tests = {
searxng = nixosTests.searx;
};
};
meta = with lib; {
homepage = "https://github.com/searxng/searxng";
description = "Fork of Searx, a privacy-respecting, hackable metasearch engine";
license = licenses.agpl3Plus;
mainProgram = "searxng-run";
maintainers = with maintainers; [
SuperSandro2000
_999eagle
];
};
}
)
|