3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/web-apps/searx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, nixosTests, python3, python3Packages, fetchFromGitHub, fetchpatch }:
2017-08-01 00:11:36 +01:00
2018-06-03 00:53:21 +01:00
with python3Packages;
2017-08-01 00:11:36 +01:00
toPythonModule (buildPythonApplication rec {
2018-01-01 14:47:27 +00:00
pname = "searx";
2022-09-16 09:04:53 +01:00
version = "1.1.0";
2018-01-01 14:47:27 +00:00
2021-04-15 11:45:51 +01:00
# pypi doesn't receive updates
2017-08-01 00:11:36 +01:00
src = fetchFromGitHub {
2021-01-14 06:13:23 +00:00
owner = "searx";
2017-08-01 00:11:36 +01:00
repo = "searx";
rev = "v${version}";
2022-09-16 09:04:53 +01:00
sha256 = "sha256-+Wsg1k/h41luk5aVfSn11/lGv8hZYVvpHLbbYHfsExw=";
2017-08-01 00:11:36 +01:00
};
postPatch = ''
2020-07-09 19:28:09 +01:00
sed -i 's/==.*$//' requirements.txt
2021-01-14 06:13:23 +00:00
'';
preBuild = ''
export SEARX_DEBUG="true";
2017-08-01 00:11:36 +01:00
'';
2018-01-01 14:47:27 +00:00
propagatedBuildInputs = [
babel
2021-04-15 11:45:51 +01:00
certifi
python-dateutil
2021-04-15 11:45:51 +01:00
flask
flaskbabel
gevent
grequests
jinja2
langdetect
lxml
ndg-httpsclient
pyasn1
pyasn1-modules
pygments
pysocks
pytz
pyyaml
requests
speaklater
2022-09-16 09:04:53 +01:00
setproctitle
2021-04-15 11:45:51 +01:00
werkzeug
2017-08-01 00:11:36 +01:00
];
2021-04-15 11:45:51 +01:00
# tests try to connect to network
doCheck = false;
pythonImportsCheck = [ "searx" ];
2018-01-01 14:47:27 +00:00
postInstall = ''
# Create a symlink for easier access to static data
mkdir -p $out/share
ln -s ../${python3.sitePackages}/searx/static $out/share/
'';
2021-01-11 07:39:19 +00:00
passthru.tests = { inherit (nixosTests) searx; };
meta = with lib; {
2021-01-14 06:13:23 +00:00
homepage = "https://github.com/searx/searx";
2017-08-01 00:11:36 +01:00
description = "A privacy-respecting, hackable metasearch engine";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ matejc globin danielfullmer ];
2017-08-01 00:11:36 +01:00
};
})