From 287ac1fcbd82ae2ba2319fda74f5b021aa792d47 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 8 Jun 2023 00:32:51 +0200 Subject: [PATCH] python311Packages.slackclient: remove unused inputs --- .../python-modules/slackclient/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/slackclient/default.nix b/pkgs/development/python-modules/slackclient/default.nix index 330ca7adf98a..4715e58d36be 100644 --- a/pkgs/development/python-modules/slackclient/default.nix +++ b/pkgs/development/python-modules/slackclient/default.nix @@ -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";