Files
nixpkgs/pkgs/development/python-modules/slack-bolt/default.nix

116 lines
1.9 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
slack-sdk,
# optional-dependencies
# - async
aiohttp,
websockets,
# - adapter
bottle,
chalice,
cherrypy,
django,
falcon,
fastapi,
flask,
gunicorn,
moto,
pyramid,
sanic,
sanic-testing,
starlette,
tornado,
uvicorn,
websocket-client,
werkzeug,
# tests
docker,
pytest-asyncio_0,
pytestCheckHook,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "slack-bolt";
version = "1.26.0";
pyproject = true;
src = fetchFromGitHub {
owner = "slackapi";
repo = "bolt-python";
tag = "v${version}";
hash = "sha256-5VbljuIYuPNPVZ6OwK9GV0ZyCNtMH7aPogOoBaaVb5A=";
};
build-system = [ setuptools ];
dependencies = [ slack-sdk ];
optional-dependencies = {
async = [
aiohttp
websockets
];
adapter = [
bottle
chalice
cherrypy
django
falcon
fastapi
flask
gunicorn
moto
pyramid
sanic
sanic-testing
starlette
tornado
uvicorn
websocket-client
werkzeug
];
};
pythonImportsCheck = [ "slack_bolt" ];
nativeCheckInputs = [
docker
pytest-asyncio_0
pytestCheckHook
writableTmpDirAsHomeHook
]
++ lib.flatten (builtins.attrValues optional-dependencies);
__darwinAllowLocalNetworking = true;
disabledTestPaths = [
# boddle is not packaged as of 2023-07-15
"tests/adapter_tests/bottle/"
];
disabledTests = [
# Require network access
"test_failure"
# TypeError
"test_oauth"
];
meta = {
description = "Framework to build Slack apps using Python";
homepage = "https://github.com/slackapi/bolt-python";
changelog = "https://github.com/slackapi/bolt-python/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ samuela ];
};
}