2020-06-23 14:46:38 +02:00
|
|
|
{ lib, python3Packages, fetchFromGitHub, fetchpatch }:
|
2017-08-01 01:11:36 +02:00
|
|
|
|
2018-06-03 01:53:21 +02:00
|
|
|
with python3Packages;
|
2017-08-01 01:11:36 +02:00
|
|
|
|
2018-01-01 15:47:27 +01:00
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "searx";
|
2020-07-09 20:28:09 +02:00
|
|
|
version = "0.17.0";
|
2018-01-01 15:47:27 +01:00
|
|
|
|
|
|
|
# Can not use PyPI because certain test files are missing.
|
2017-08-01 01:11:36 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "asciimoo";
|
|
|
|
repo = "searx";
|
|
|
|
rev = "v${version}";
|
2020-07-09 20:28:09 +02:00
|
|
|
sha256 = "0pznz3wsaikl8khmzqvj05kzh5y07hjw8gqhy6x0lz1b00cn5af4";
|
2017-08-01 01:11:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
2020-07-09 20:28:09 +02:00
|
|
|
sed -i 's/==.*$//' requirements.txt
|
2017-08-01 01:11:36 +02:00
|
|
|
'';
|
|
|
|
|
2018-01-01 15:47:27 +01:00
|
|
|
propagatedBuildInputs = [
|
2017-08-01 01:11:36 +02:00
|
|
|
pyyaml lxml grequests flaskbabel flask requests
|
|
|
|
gevent speaklater Babel pytz dateutil pygments
|
|
|
|
pyasn1 pyasn1-modules ndg-httpsclient certifi pysocks
|
2020-04-05 21:59:23 +02:00
|
|
|
jinja2
|
2017-08-01 01:11:36 +02:00
|
|
|
];
|
|
|
|
|
2018-06-03 01:53:21 +02:00
|
|
|
checkInputs = [
|
2019-01-07 11:10:38 +01:00
|
|
|
Babel mock nose2 covCore pep8 plone-testing splinter
|
|
|
|
unittest2 zope_testrunner selenium
|
2018-06-03 01:53:21 +02:00
|
|
|
];
|
2018-01-01 15:47:27 +01:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
rm tests/test_robot.py # A variable that is imported is commented out
|
|
|
|
'';
|
|
|
|
|
2017-08-09 19:38:59 +02:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/asciimoo/searx";
|
2017-08-01 01:11:36 +02:00
|
|
|
description = "A privacy-respecting, hackable metasearch engine";
|
|
|
|
license = licenses.agpl3Plus;
|
2020-04-05 21:59:23 +02:00
|
|
|
maintainers = with maintainers; [ matejc fpletz globin danielfullmer ];
|
2017-08-01 01:11:36 +02:00
|
|
|
};
|
2017-08-09 19:38:59 +02:00
|
|
|
}
|