python311Packages.slackclient: remove unused inputs
This commit is contained in:
parent
7721e0d2c1
commit
287ac1fcbd
1 changed files with 7 additions and 5 deletions
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue