nixpkgs/pkgs/by-name/er/errbot/package.nix
Yueh-Shun Li 624897829b treewide: modernize Python package pytest flags
Use `(enabled|disabled)(TestPaths|TestMarks|Tests)` and `pytestFlags`
instead of the `__structuredAttrs`-incompatible `pytestFlagsArray`.
2025-07-15 03:00:08 +08:00

77 lines
1.5 KiB
Nix

{
lib,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "errbot";
version = "6.2.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "errbotio";
repo = "errbot";
rev = version;
hash = "sha256-UdqzBrlcb9NkuVo8ChADJmaKevadoGLyZUrckStb5ko=";
};
build-system = with python3.pkgs; [
setuptools
];
pythonRelaxDeps = true;
dependencies = with python3.pkgs; [
ansi
colorlog
daemonize
deepmerge
dulwich
flask
irc
jinja2
markdown
pyasn1
pyasn1-modules
pygments
pygments-markdown-lexer
pyopenssl
requests
setuptools
slixmpp
python-telegram-bot
webtest
];
nativeCheckInputs = with python3.pkgs; [
mock
pytestCheckHook
];
# errbot-backend-slackv3 has not been packaged
disabledTestPaths = [ "tests/backend_tests/slack_test.py" ];
disabledTests = [
# require networking
"test_backup"
"test_broken_plugin"
"test_plugin_cycle"
"test_entrypoint_paths"
];
pythonImportsCheck = [ "errbot" ];
meta = {
changelog = "https://github.com/errbotio/errbot/blob/${version}/CHANGES.rst";
description = "Chatbot designed to be simple to extend with plugins written in Python";
homepage = "http://errbot.io/";
maintainers = with lib.maintainers; [ hlad ];
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
# flaky on darwin, "RuntimeError: can't start new thread"
mainProgram = "errbot";
};
}