2021-02-05 09:27:13 +00:00
|
|
|
{ lib
|
|
|
|
, ansi
|
|
|
|
, buildPythonApplication
|
|
|
|
, colorlog
|
|
|
|
, daemonize
|
|
|
|
, deepmerge
|
|
|
|
, dulwich
|
|
|
|
, fetchFromGitHub
|
|
|
|
, flask
|
|
|
|
, glibcLocales
|
|
|
|
, hypchat
|
|
|
|
, irc
|
|
|
|
, jinja2
|
|
|
|
, markdown
|
|
|
|
, mock
|
|
|
|
, pyasn1
|
|
|
|
, pyasn1-modules
|
|
|
|
, pygments
|
|
|
|
, pygments-markdown-lexer
|
|
|
|
, pyopenssl
|
|
|
|
, pytestCheckHook
|
|
|
|
, requests
|
|
|
|
, slackclient
|
|
|
|
, sleekxmpp
|
|
|
|
, telegram
|
|
|
|
, webtest
|
|
|
|
}:
|
2019-08-30 18:04:45 +01:00
|
|
|
|
2021-02-05 09:27:13 +00:00
|
|
|
buildPythonApplication rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "errbot";
|
2021-02-05 09:27:13 +00:00
|
|
|
version = "6.1.7";
|
2016-07-01 15:04:01 +01:00
|
|
|
|
2019-08-30 18:04:45 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "errbotio";
|
|
|
|
repo = "errbot";
|
|
|
|
rev = version;
|
2021-02-05 09:27:13 +00:00
|
|
|
sha256 = "02h44qd3d91zy657hyqsw3gskgxg31848pw6zpb8dhd1x84z5y77";
|
2016-07-01 15:04:01 +01:00
|
|
|
};
|
|
|
|
|
2017-08-28 00:56:16 +01:00
|
|
|
LC_ALL = "en_US.utf8";
|
|
|
|
|
2017-08-30 21:23:28 +01:00
|
|
|
buildInputs = [ glibcLocales ];
|
2021-02-05 09:27:13 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
ansi
|
|
|
|
colorlog
|
|
|
|
daemonize
|
|
|
|
deepmerge
|
|
|
|
dulwich
|
|
|
|
flask
|
|
|
|
hypchat
|
|
|
|
irc
|
|
|
|
jinja2
|
|
|
|
markdown
|
|
|
|
pyasn1
|
|
|
|
pyasn1-modules
|
|
|
|
pygments
|
|
|
|
pygments-markdown-lexer
|
|
|
|
pyopenssl
|
|
|
|
requests
|
|
|
|
slackclient
|
|
|
|
sleekxmpp
|
|
|
|
telegram
|
|
|
|
webtest
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
mock
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
# Slack backend test has an import issue
|
|
|
|
pytestFlagsArray = [ "--ignore=tests/backend_tests/slack_test.py" ];
|
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
"backup"
|
|
|
|
"broken_plugin"
|
|
|
|
"plugin_cycle"
|
2016-07-01 15:04:01 +01:00
|
|
|
];
|
|
|
|
|
2021-02-05 09:27:13 +00:00
|
|
|
pythonImportsCheck = [ "errbot" ];
|
2019-08-30 18:04:45 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
2016-07-01 15:04:01 +01:00
|
|
|
description = "Chatbot designed to be simple to extend with plugins written in Python";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://errbot.io/";
|
2016-09-28 18:26:47 +01:00
|
|
|
maintainers = with maintainers; [ fpletz globin ];
|
2021-02-05 09:27:13 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2020-02-29 23:08:30 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
# flaky on darwin, "RuntimeError: can't start new thread"
|
2016-07-01 15:04:01 +01:00
|
|
|
};
|
|
|
|
}
|