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

57 lines
1.7 KiB
Nix
Raw Normal View History

2018-06-02 23:53:21 +00:00
{ lib, python3Packages, fetchFromGitHub }:
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
2018-01-01 14:47:27 +00:00
buildPythonApplication rec {
pname = "searx";
2019-01-07 10:10:38 +00:00
version = "0.15.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 {
owner = "asciimoo";
repo = "searx";
rev = "v${version}";
2019-01-07 10:10:38 +00:00
sha256 = "05si0fn57z1g80l6003cs0ypag2m6zyi3dgsi06pvjp066xbrjvd";
2017-07-31 23:11:36 +00:00
};
postPatch = ''
substituteInPlace requirements.txt \
2018-01-01 14:47:27 +00:00
--replace 'certifi==2017.11.5' 'certifi' \
2019-01-07 10:10:38 +00:00
--replace 'flask==1.0.2' 'flask==1.0.*' \
2018-01-01 14:47:27 +00:00
--replace 'flask-babel==0.11.2' 'flask-babel==0.11.*' \
2019-01-07 10:10:38 +00:00
--replace 'lxml==4.2.3' 'lxml==4.2.*' \
--replace 'idna==2.7' 'idna' \
2017-09-07 19:29:47 +00:00
--replace 'pygments==2.1.3' 'pygments>=2.1,<3.0' \
2019-01-07 10:10:38 +00:00
--replace 'pyopenssl==18.0.0' 'pyopenssl' \
--replace 'python-dateutil==2.7.3' 'python-dateutil==2.7.*'
substituteInPlace requirements-dev.txt \
--replace 'plone.testing==5.0.0' 'plone.testing' \
--replace 'pep8==1.7.1' 'pep8==1.7.*' \
--replace 'splinter==0.7.5' 'splinter' \
--replace 'selenium==3.5.0' 'selenium'
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
];
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
preCheck = ''
rm tests/test_robot.py # A variable that is imported is commented out
2018-06-02 23:53:21 +00:00
rm tests/unit/engines/pubmed.py
2018-01-01 14:47:27 +00:00
'';
meta = with lib; {
2017-07-31 23:11:36 +00:00
homepage = https://github.com/asciimoo/searx;
description = "A privacy-respecting, hackable metasearch engine";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ matejc fpletz globin ];
2017-07-31 23:11:36 +00:00
};
}