forked from mirrors/nixpkgs
python311Packages.slackclient: remove unused inputs
This commit is contained in:
parent
7721e0d2c1
commit
287ac1fcbd
|
@ -10,10 +10,8 @@
|
|||
, mock
|
||||
, moto
|
||||
, psutil
|
||||
, pytest-cov
|
||||
, pytest-mock
|
||||
, pytestCheckHook
|
||||
, pytest-runner
|
||||
, requests
|
||||
, responses
|
||||
, sqlalchemy
|
||||
|
@ -55,8 +53,10 @@ buildPythonPackage rec {
|
|||
websockets
|
||||
];
|
||||
|
||||
# Exclude tests that requires network features
|
||||
pytestFlagsArray = [ "--ignore=integration_tests" ];
|
||||
pytestFlagsArray = [
|
||||
# Exclude tests that requires network features
|
||||
"--ignore=integration_tests"
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
export HOME=$(mktemp -d)
|
||||
|
@ -76,7 +76,9 @@ buildPythonPackage rec {
|
|||
"test_send_dict"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "slack" ];
|
||||
pythonImportsCheck = [
|
||||
"slack"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A client for Slack, which supports the Slack Web API and Real Time Messaging (RTM) API";
|
||||
|
|
Loading…
Reference in a new issue