python311Packages.slack-bolt: add optional-dependencies

This commit is contained in:
Fabian Affolter 2023-09-01 15:57:38 +02:00
parent 5fd650cb09
commit 133fa25ecc

View file

@ -1,4 +1,6 @@
{ buildPythonPackage
{ aiohttp
, bottle
, buildPythonPackage
, chalice
, cherrypy
, django
@ -7,17 +9,23 @@
, fetchFromGitHub
, flask
, flask-sockets
, gunicorn
, lib
, moto
, numpy
, pyramid
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, sanic
, sanic-testing
, slack-sdk
, starlette
, tornado
, uvicorn
, websocket-client
, websockets
, werkzeug
}:
buildPythonPackage rec {
@ -25,6 +33,8 @@ buildPythonPackage rec {
version = "1.18.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "slackapi";
repo = "bolt-python";
@ -40,23 +50,37 @@ buildPythonPackage rec {
propagatedBuildInputs = [ slack-sdk ];
passthru.optional-dependencies = {
async = [
aiohttp
websockets
];
adapter = [
bottle
chalice
cherrypy
django
falcon
fastapi
flask
flask-sockets
gunicorn
moto
pyramid
sanic
sanic-testing
starlette
tornado
uvicorn
websocket-client
werkzeug
];
};
nativeCheckInputs = [
chalice
cherrypy
django
falcon
fastapi
flask
flask-sockets
moto
pyramid
pytest-asyncio
pytestCheckHook
sanic
sanic-testing
starlette
tornado
];
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
# Work around "Read-only file system: '/homeless-shelter'" errors
preCheck = ''