nixpkgs/pkgs/applications/networking/errbot/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
1.3 KiB
Nix
Raw Normal View History

2021-02-05 09:27:13 +00:00
{ lib
, fetchFromGitHub
, glibcLocales
2022-06-05 22:09:07 +00:00
, python39
2021-02-05 09:27:13 +00:00
}:
2019-08-30 17:04:45 +00:00
2022-06-05 22:09:07 +00:00
let
python3 = python39;
in python3.pkgs.buildPythonApplication rec {
pname = "errbot";
2021-02-05 09:27:13 +00:00
version = "6.1.7";
2016-07-01 14:04:01 +00:00
2019-08-30 17:04:45 +00:00
src = fetchFromGitHub {
owner = "errbotio";
repo = "errbot";
rev = version;
2021-02-05 09:27:13 +00:00
sha256 = "02h44qd3d91zy657hyqsw3gskgxg31848pw6zpb8dhd1x84z5y77";
2016-07-01 14:04:01 +00:00
};
2017-08-27 23:56:16 +00:00
LC_ALL = "en_US.utf8";
buildInputs = [ glibcLocales ];
2021-02-05 09:27:13 +00:00
2022-06-05 22:09:07 +00:00
propagatedBuildInputs = with python3.pkgs; [
2021-02-05 09:27:13 +00:00
ansi
colorlog
daemonize
deepmerge
dulwich
flask
hypchat
irc
jinja2
markdown
pyasn1
pyasn1-modules
pygments
pygments-markdown-lexer
pyopenssl
requests
slackclient
sleekxmpp
telegram
webtest
];
2022-06-05 22:09:07 +00:00
checkInputs = with python3.pkgs; [
2021-02-05 09:27:13 +00:00
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 14:04:01 +00:00
];
2021-02-05 09:27:13 +00:00
pythonImportsCheck = [ "errbot" ];
2019-08-30 17:04:45 +00:00
meta = with lib; {
2016-07-01 14:04:01 +00:00
description = "Chatbot designed to be simple to extend with plugins written in Python";
homepage = "http://errbot.io/";
maintainers = with maintainers; [ globin ];
2021-02-05 09:27:13 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
# flaky on darwin, "RuntimeError: can't start new thread"
2016-07-01 14:04:01 +00:00
};
}