1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/servers/web-apps/searx/default.nix

65 lines
2.1 KiB
Nix
Raw Normal View History

2020-06-23 13:46:38 +01:00
{ lib, 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
2018-01-01 14:47:27 +00:00
buildPythonApplication rec {
pname = "searx";
2020-04-05 20:59:23 +01:00
version = "0.16.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}";
2020-04-05 20:59:23 +01:00
sha256 = "0hfa4nmis98yvghxw866rzjpmhb2ln8l6l8g9yx4m79b2lk76xcs";
2017-08-01 00:11:36 +01:00
};
2020-06-23 13:46:38 +01:00
patches = [(fetchpatch {
url = "https://github.com/asciimoo/searx/commit/b8b13372c8fd3bfe978a1c724ab98b05348df054.patch";
sha256 = "1zc3dx8pgqfg0bj48ihckjk9xrrm33jlnmj8k02g17gfcmj7566a";
})];
2017-08-01 00:11:36 +01:00
postPatch = ''
substituteInPlace requirements.txt \
2020-04-05 20:59:23 +01:00
--replace 'certifi==2019.3.9' 'certifi' \
--replace 'flask==1.0.2' 'flask' \
--replace 'flask-babel==0.12.2' 'flask-babel' \
--replace 'jinja2==2.10.1' 'jinja2' \
--replace 'lxml==4.3.3' 'lxml' \
--replace 'idna==2.8' 'idna' \
2017-09-07 20:29:47 +01:00
--replace 'pygments==2.1.3' 'pygments>=2.1,<3.0' \
2020-04-05 20:59:23 +01:00
--replace 'pyopenssl==19.0.0' 'pyopenssl' \
--replace 'python-dateutil==2.8.0' 'python-dateutil==2.8.*' \
--replace 'pyyaml==5.1' 'pyyaml' \
--replace 'requests[socks]==2.22.0' 'requests[socks]'
2019-01-07 10:10:38 +00:00
substituteInPlace requirements-dev.txt \
--replace 'plone.testing==5.0.0' 'plone.testing' \
2020-04-05 20:59:23 +01:00
--replace 'pep8==1.7.0' 'pep8==1.7.*' \
--replace 'splinter==0.11.0' 'splinter' \
--replace 'selenium==3.141.0' 'selenium'
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
2020-04-05 20:59:23 +01:00
jinja2
2017-08-01 00:11:36 +01:00
];
2018-06-03 00:53:21 +01:00
checkInputs = [
2019-01-07 10:10:38 +00:00
Babel mock nose2 covCore pep8 plone-testing splinter
unittest2 zope_testrunner selenium
2018-06-03 00:53:21 +01:00
];
2018-01-01 14:47:27 +00:00
preCheck = ''
rm tests/test_robot.py # A variable that is imported is commented out
'';
meta = with lib; {
homepage = "https://github.com/asciimoo/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
};
}