python311Packages.slackclient: remove unused inputs

This commit is contained in:
Fabian Affolter 2023-06-08 00:32:51 +02:00
parent 7721e0d2c1
commit 287ac1fcbd

View file

@ -10,10 +10,8 @@
, mock , mock
, moto , moto
, psutil , psutil
, pytest-cov
, pytest-mock , pytest-mock
, pytestCheckHook , pytestCheckHook
, pytest-runner
, requests , requests
, responses , responses
, sqlalchemy , sqlalchemy
@ -55,8 +53,10 @@ buildPythonPackage rec {
websockets websockets
]; ];
pytestFlagsArray = [
# Exclude tests that requires network features # Exclude tests that requires network features
pytestFlagsArray = [ "--ignore=integration_tests" ]; "--ignore=integration_tests"
];
preCheck = '' preCheck = ''
export HOME=$(mktemp -d) export HOME=$(mktemp -d)
@ -76,7 +76,9 @@ buildPythonPackage rec {
"test_send_dict" "test_send_dict"
]; ];
pythonImportsCheck = [ "slack" ]; pythonImportsCheck = [
"slack"
];
meta = with lib; { meta = with lib; {
description = "A client for Slack, which supports the Slack Web API and Real Time Messaging (RTM) API"; description = "A client for Slack, which supports the Slack Web API and Real Time Messaging (RTM) API";