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

51 lines
1.5 KiB
Nix
Raw Normal View History

2018-06-03 00:53:21 +01:00
{ lib, 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
2018-01-01 14:47:27 +00:00
buildPythonApplication rec {
pname = "searx";
2018-02-28 17:20:01 +00:00
version = "0.14.0";
2018-01-01 14:47:27 +00:00
# Can not use PyPI because certain test files are missing.
2017-08-01 00:11:36 +01:00
src = fetchFromGitHub {
owner = "asciimoo";
repo = "searx";
rev = "v${version}";
2018-02-28 17:20:01 +00:00
sha256 = "046xg6xcs1mxgahz7kwf3fsmwd99q3hhms6pdjlvyczidlfhpmxl";
2017-08-01 00:11:36 +01:00
};
postPatch = ''
substituteInPlace requirements.txt \
2018-01-01 14:47:27 +00:00
--replace 'certifi==2017.11.5' 'certifi' \
--replace 'flask==0.12.2' 'flask==0.12.*' \
--replace 'flask-babel==0.11.2' 'flask-babel==0.11.*' \
--replace 'lxml==4.1.1' 'lxml==4.1.*' \
--replace 'idna==2.5' 'idna' \
2017-09-07 20:29:47 +01:00
--replace 'pygments==2.1.3' 'pygments>=2.1,<3.0' \
2018-01-01 14:47:27 +00:00
--replace 'pyopenssl==17.4.0' 'pyopenssl' \
--replace 'python-dateutil==2.6.1' 'python-dateutil==2.6.*'
2017-08-01 00:11:36 +01:00
'';
2018-01-01 14:47:27 +00:00
propagatedBuildInputs = [
2017-08-01 00:11:36 +01:00
pyyaml lxml grequests flaskbabel flask requests
gevent speaklater Babel pytz dateutil pygments
pyasn1 pyasn1-modules ndg-httpsclient certifi pysocks
];
2018-06-03 00:53:21 +01:00
checkInputs = [
splinter mock plone-testing robotsuite unittest2 selenium
];
2018-01-01 14:47:27 +00:00
preCheck = ''
rm tests/test_robot.py # A variable that is imported is commented out
2018-06-03 00:53:21 +01:00
rm tests/unit/engines/pubmed.py
2018-01-01 14:47:27 +00:00
'';
meta = with lib; {
2017-08-01 00:11:36 +01:00
homepage = https://github.com/asciimoo/searx;
description = "A privacy-respecting, hackable metasearch engine";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ matejc fpletz ];
2017-08-01 00:11:36 +01:00
};
}