f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
88 lines
1.6 KiB
Nix
88 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
aiodns,
|
|
aiohttp,
|
|
boto3,
|
|
buildPythonPackage,
|
|
codecov,
|
|
fetchFromGitHub,
|
|
flake8,
|
|
flask-sockets,
|
|
moto,
|
|
pythonOlder,
|
|
psutil,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
sqlalchemy,
|
|
websocket-client,
|
|
websockets,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "slack-sdk";
|
|
version = "3.31.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "slackapi";
|
|
repo = "python-slack-sdk";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-6fuC2yIGtjIxnEiI2/1sQ5RZB18WlteozyS8/XDTwkg=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail ', "pytest-runner"' ""
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
aiodns
|
|
aiohttp
|
|
boto3
|
|
sqlalchemy
|
|
websocket-client
|
|
websockets
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
codecov
|
|
flake8
|
|
flask-sockets
|
|
moto
|
|
psutil
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
disabledTestPaths = [
|
|
# Exclude tests that requires network features
|
|
"integration_tests"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Requires network features
|
|
"test_start_raises_an_error_if_rtm_ws_url_is_not_returned"
|
|
"test_org_installation"
|
|
"test_interactions"
|
|
"test_issue_690_oauth_access"
|
|
];
|
|
|
|
pythonImportsCheck = [ "slack_sdk" ];
|
|
|
|
meta = with lib; {
|
|
description = "Slack Developer Kit for Python";
|
|
homepage = "https://slack.dev/python-slack-sdk/";
|
|
changelog = "https://github.com/slackapi/python-slack-sdk/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|