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

54 lines
1.4 KiB
Nix
Raw Normal View History

2021-01-11 07:39:19 +00:00
{ lib, nixosTests, python3, python3Packages, fetchFromGitHub, fetchpatch }:
2017-07-31 23:11:36 +00:00
2018-06-02 23:53:21 +00:00
with python3Packages;
2017-07-31 23:11:36 +00:00
toPythonModule (buildPythonApplication rec {
2018-01-01 14:47:27 +00:00
pname = "searx";
2021-01-14 06:13:23 +00:00
version = "0.18.0";
2018-01-01 14:47:27 +00:00
# Can not use PyPI because certain test files are missing.
2017-07-31 23:11:36 +00:00
src = fetchFromGitHub {
2021-01-14 06:13:23 +00:00
owner = "searx";
2017-07-31 23:11:36 +00:00
repo = "searx";
rev = "v${version}";
2021-01-14 06:13:23 +00:00
sha256 = "0idxspvckvsd02v42h4z4wqrfkn1l8n59i91f7pc837cxya8p6hn";
2017-07-31 23:11:36 +00:00
};
postPatch = ''
2020-07-09 18:28:09 +00:00
sed -i 's/==.*$//' requirements.txt
2021-01-14 06:13:23 +00:00
# skip failing test
sed -i '/test_json_serial(/,+3d' tests/unit/test_standalone_searx.py
'';
preBuild = ''
export SEARX_DEBUG="true";
2017-07-31 23:11:36 +00:00
'';
2018-01-01 14:47:27 +00:00
propagatedBuildInputs = [
2017-07-31 23:11:36 +00:00
pyyaml lxml grequests flaskbabel flask requests
gevent speaklater Babel pytz dateutil pygments
pyasn1 pyasn1-modules ndg-httpsclient certifi pysocks
2020-07-07 13:46:02 +00:00
jinja2 werkzeug
2017-07-31 23:11:36 +00:00
];
2018-06-02 23:53:21 +00:00
checkInputs = [
2019-01-07 10:10:38 +00:00
Babel mock nose2 covCore pep8 plone-testing splinter
unittest2 zope_testrunner selenium
2018-06-02 23:53:21 +00:00
];
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-07-31 23:11:36 +00:00
description = "A privacy-respecting, hackable metasearch engine";
license = licenses.agpl3Plus;
2020-04-05 19:59:23 +00:00
maintainers = with maintainers; [ matejc fpletz globin danielfullmer ];
2017-07-31 23:11:36 +00:00
};
})