nixpkgs/pkgs/servers/web-apps/searx/default.nix

68 lines
1.3 KiB
Nix
Raw Normal View History

2021-04-15 11:45:51 +01:00
{ lib, nixosTests, python3, python3Packages, fetchFromGitHub }:
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";
2021-04-15 11:45:51 +01:00
version = "1.0.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}";
2021-04-15 11:45:51 +01:00
sha256 = "0ghkx8g8jnh8yd46p4mlbjn2zm12nx27v7qflr4c8xhlgi0px0mh";
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 = [
2021-04-15 11:45:51 +01:00
Babel
certifi
dateutil
flask
flaskbabel
gevent
grequests
jinja2
langdetect
lxml
ndg-httpsclient
pyasn1
pyasn1-modules
pygments
pysocks
pytz
pyyaml
requests
speaklater
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;
2020-04-05 20:59:23 +01:00
maintainers = with maintainers; [ matejc fpletz globin danielfullmer ];
2017-08-01 00:11:36 +01:00
};
})