mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
2151defed0
The update to flask-babel 3.0 (48958930
) broke searx, despite the program
apparently building.
73 lines
1.4 KiB
Nix
73 lines
1.4 KiB
Nix
{ lib, nixosTests, python3, python3Packages, fetchFromGitHub, fetchpatch }:
|
|
|
|
with python3Packages;
|
|
|
|
toPythonModule (buildPythonApplication rec {
|
|
pname = "searx";
|
|
version = "1.1.0";
|
|
|
|
# pypi doesn't receive updates
|
|
src = fetchFromGitHub {
|
|
owner = "searx";
|
|
repo = "searx";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-+Wsg1k/h41luk5aVfSn11/lGv8hZYVvpHLbbYHfsExw=";
|
|
};
|
|
|
|
patches = [
|
|
./fix-flask-babel-3.0.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
sed -i 's/==.*$//' requirements.txt
|
|
'';
|
|
|
|
preBuild = ''
|
|
export SEARX_DEBUG="true";
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
babel
|
|
certifi
|
|
python-dateutil
|
|
flask
|
|
flask-babel
|
|
gevent
|
|
grequests
|
|
jinja2
|
|
langdetect
|
|
lxml
|
|
ndg-httpsclient
|
|
pyasn1
|
|
pyasn1-modules
|
|
pygments
|
|
pysocks
|
|
pytz
|
|
pyyaml
|
|
requests
|
|
speaklater
|
|
setproctitle
|
|
werkzeug
|
|
];
|
|
|
|
# tests try to connect to network
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "searx" ];
|
|
|
|
postInstall = ''
|
|
# Create a symlink for easier access to static data
|
|
mkdir -p $out/share
|
|
ln -s ../${python3.sitePackages}/searx/static $out/share/
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) searx; };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/searx/searx";
|
|
description = "A privacy-respecting, hackable metasearch engine";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ matejc globin danielfullmer ];
|
|
};
|
|
})
|