mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
dadcfacb51
Co-authored-by: Samuel Ainsworth <skainsworth@gmail.com>
89 lines
1.7 KiB
Nix
89 lines
1.7 KiB
Nix
{ buildPythonPackage
|
|
, chalice
|
|
, cherrypy
|
|
, django
|
|
, falcon
|
|
, fastapi
|
|
, fetchFromGitHub
|
|
, flask
|
|
, flask-sockets
|
|
, lib
|
|
, moto
|
|
, numpy
|
|
, pyramid
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, sanic
|
|
, sanic-testing
|
|
, slack-sdk
|
|
, starlette
|
|
, tornado
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "slack-bolt";
|
|
version = "1.18.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "slackapi";
|
|
repo = "bolt-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-s9djd/MDNnyNkjkeApY6Fb1mhI6iop8RghaSJdi4eAs=";
|
|
};
|
|
|
|
# The packaged pytest-runner version is too new as of 2023-07-27. It's not really needed anyway. Unfortunately,
|
|
# pythonRelaxDepsHook doesn't work on setup_requires packages.
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace "pytest-runner==5.2" ""
|
|
'';
|
|
|
|
propagatedBuildInputs = [ slack-sdk ];
|
|
|
|
nativeCheckInputs = [
|
|
chalice
|
|
cherrypy
|
|
django
|
|
falcon
|
|
fastapi
|
|
flask
|
|
flask-sockets
|
|
moto
|
|
pyramid
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
sanic
|
|
sanic-testing
|
|
starlette
|
|
tornado
|
|
];
|
|
|
|
# Work around "Read-only file system: '/homeless-shelter'" errors
|
|
preCheck = ''
|
|
export HOME="$(mktemp -d)"
|
|
'';
|
|
|
|
disabledTestPaths = [
|
|
# boddle is not packaged as of 2023-07-15
|
|
"tests/adapter_tests/bottle/"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Require network access
|
|
"test_events"
|
|
"test_interactions"
|
|
"test_lazy_listener_calls"
|
|
"test_lazy_listeners"
|
|
"test_failure"
|
|
];
|
|
|
|
pythonImportsCheck = [ "slack_bolt" ];
|
|
|
|
meta = with lib; {
|
|
description = "A framework to build Slack apps using Python";
|
|
homepage = "https://github.com/slackapi/bolt-python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ samuela ];
|
|
};
|
|
}
|