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

76 lines
1.6 KiB
Nix
Raw Normal View History

{ 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-04-15 10:45:51 +00:00
version = "1.0.0";
2018-01-01 14:47:27 +00:00
2021-04-15 10:45:51 +00:00
# pypi doesn't receive updates
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-04-15 10:45:51 +00:00
sha256 = "0ghkx8g8jnh8yd46p4mlbjn2zm12nx27v7qflr4c8xhlgi0px0mh";
2017-07-31 23:11:36 +00:00
};
patches = [
# Fix a crash, remove with the next update
(fetchpatch {
url = "https://github.com/searx/searx/commit/9c10b150963babb7f0b52081693a42b2e61eede9.patch";
sha256 = "0svp8799628wja2hq59da6rxqi99am8p6hb8y27ciwzsjz0wwba7";
})
];
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
'';
preBuild = ''
export SEARX_DEBUG="true";
2017-07-31 23:11:36 +00:00
'';
2018-01-01 14:47:27 +00:00
propagatedBuildInputs = [
2021-04-15 10:45:51 +00:00
Babel
certifi
dateutil
flask
flaskbabel
gevent
grequests
jinja2
langdetect
lxml
ndg-httpsclient
pyasn1
pyasn1-modules
pygments
pysocks
pytz
pyyaml
requests
speaklater
werkzeug
2017-07-31 23:11:36 +00:00
];
2021-04-15 10:45:51 +00:00
# tests try to connect to network
doCheck = false;
pythonImportsCheck = [ "searx" ];
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
};
})