python312Packages.slack-sdk: format with nixfmt

This commit is contained in:
Fabian Affolter
2024-05-17 10:22:26 +02:00
parent 3e8689730c
commit a62284352d
@@ -1,22 +1,23 @@
{ stdenv
, lib
, aiodns
, aiohttp
, boto3
, buildPythonPackage
, codecov
, fetchFromGitHub
, flake8
, flask-sockets
, moto
, pythonOlder
, psutil
, pytest-asyncio
, pytestCheckHook
, setuptools
, sqlalchemy
, websocket-client
, websockets
{
lib,
stdenv,
aiodns,
aiohttp,
boto3,
buildPythonPackage,
codecov,
fetchFromGitHub,
flake8,
flask-sockets,
moto,
pythonOlder,
psutil,
pytest-asyncio,
pytestCheckHook,
setuptools,
sqlalchemy,
websocket-client,
websockets,
}:
buildPythonPackage rec {
@@ -38,9 +39,7 @@ buildPythonPackage rec {
--replace-fail ', "pytest-runner"' ""
'';
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
aiodns
@@ -78,15 +77,13 @@ buildPythonPackage rec {
"test_issue_690_oauth_access"
];
pythonImportsCheck = [
"slack_sdk"
];
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 = with licenses; [ mit ];
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}