mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
70 lines
1.4 KiB
Nix
70 lines
1.4 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "errbot";
|
|
version = "6.2.0";
|
|
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "errbotio";
|
|
repo = "errbot";
|
|
rev = version;
|
|
hash = "sha256-UdqzBrlcb9NkuVo8ChADJmaKevadoGLyZUrckStb5ko=";
|
|
};
|
|
|
|
pythonRelaxDeps = true;
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
ansi
|
|
colorlog
|
|
daemonize
|
|
deepmerge
|
|
dulwich
|
|
flask
|
|
irc
|
|
jinja2
|
|
markdown
|
|
pyasn1
|
|
pyasn1-modules
|
|
pygments
|
|
pygments-markdown-lexer
|
|
pyopenssl
|
|
requests
|
|
slixmpp
|
|
python-telegram-bot
|
|
webtest
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
# errbot-backend-slackv3 has not been packaged
|
|
pytestFlagsArray = [ "--ignore=tests/backend_tests/slack_test.py" ];
|
|
|
|
disabledTests = [
|
|
# require networking
|
|
"test_backup"
|
|
"test_broken_plugin"
|
|
"test_plugin_cycle"
|
|
"test_entrypoint_paths"
|
|
];
|
|
|
|
pythonImportsCheck = [ "errbot" ];
|
|
|
|
meta = with lib; {
|
|
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 = [ ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
# flaky on darwin, "RuntimeError: can't start new thread"
|
|
mainProgram = "errbot";
|
|
};
|
|
}
|