2021-05-09 17:51:46 +02:00
|
|
|
{ lib, fetchFromGitHub, python3Packages }:
|
|
|
|
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
|
|
pname = "opsdroid";
|
2022-02-24 14:27:42 +01:00
|
|
|
version = "0.25.0";
|
2021-05-09 17:51:46 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "opsdroid";
|
|
|
|
repo = "opsdroid";
|
|
|
|
rev = "v${version}";
|
2022-02-24 14:27:42 +01:00
|
|
|
sha256 = "0f32jf2rds9543akysxinf3hsgzr0w880xwcrcm1r2r0nhp8b8s5";
|
2021-05-09 17:51:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
disabled = !python3Packages.isPy3k;
|
|
|
|
|
|
|
|
# tests folder is not included in release
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2022-05-09 01:53:28 +02:00
|
|
|
click babel opsdroid_get_image_size slackclient webexteamssdk bleach
|
2021-05-09 17:51:46 +02:00
|
|
|
parse emoji puremagic yamale nbformat websockets pycron nbconvert
|
|
|
|
aiohttp matrix-api-async aioredis aiosqlite arrow pyyaml motor regex
|
|
|
|
mattermostdriver setuptools voluptuous ibm-watson tailer multidict
|
|
|
|
watchgod get-video-properties appdirs bitstring matrix-nio
|
2023-03-03 19:26:37 +01:00
|
|
|
] ++ matrix-nio.optional-dependencies.e2e;
|
2021-05-09 17:51:46 +02:00
|
|
|
|
|
|
|
passthru.python = python3Packages.python;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "An open source chat-ops bot framework";
|
|
|
|
homepage = "https://opsdroid.dev";
|
2022-08-03 14:13:56 +02:00
|
|
|
maintainers = with maintainers; [ globin willibutz ];
|
2021-05-09 17:51:46 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|