searx: 0.12.0 -> 0.13.1

This commit is contained in:
Frederik Rietdijk 2018-01-01 15:47:27 +01:00
parent ad2df95a2c
commit 7a2454bd4e

View file

@ -1,34 +1,43 @@
{ lib, pythonPackages, fetchFromGitHub }:
pythonPackages.buildPythonApplication rec {
name = "searx-${version}";
version = "0.12.0";
namePrefix = "";
with pythonPackages;
buildPythonApplication rec {
pname = "searx";
version = "0.13.1";
# Can not use PyPI because certain test files are missing.
src = fetchFromGitHub {
owner = "asciimoo";
repo = "searx";
rev = "v${version}";
sha256 = "196lk8dpv8fsjgmwlqik6j6rabvfid41fir6lzqy03hv7ydcw1k0";
sha256 = "0nizxq9ggf9g8f8pxn2hfm0kn20356v65h4cj9s73n742nkv6ani";
};
postPatch = ''
substituteInPlace requirements.txt \
--replace 'certifi==2017.1.23' 'certifi' \
--replace 'lxml==3.7.3' 'lxml' \
--replace 'pyopenssl==16.2.0' 'pyopenssl' \
--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' \
--replace 'pygments==2.1.3' 'pygments>=2.1,<3.0' \
--replace 'flask==0.12' 'flask==0.12.*' \
--replace 'requests[socks]==2.13.0' 'requests[socks]==2.*' \
--replace 'python-dateutil==2.6.0' 'python-dateutil==2.6.*'
--replace 'pyopenssl==17.4.0' 'pyopenssl' \
--replace 'python-dateutil==2.6.1' 'python-dateutil==2.6.*'
'';
propagatedBuildInputs = with pythonPackages; [
propagatedBuildInputs = [
pyyaml lxml grequests flaskbabel flask requests
gevent speaklater Babel pytz dateutil pygments
pyasn1 pyasn1-modules ndg-httpsclient certifi pysocks
];
checkInputs = [ splinter mock plone-testing robotsuite unittest2 ];
preCheck = ''
rm tests/test_robot.py # A variable that is imported is commented out
'';
meta = with lib; {
homepage = https://github.com/asciimoo/searx;
description = "A privacy-respecting, hackable metasearch engine";