mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
71 lines
1.4 KiB
Nix
71 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";
|
|
};
|
|
}
|