python312Packages.google-cloud-pubsub: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-05 10:31:25 +02:00
parent 8f8686780e
commit 891025a8a0
1 changed files with 19 additions and 24 deletions

View File

@ -1,18 +1,19 @@
{ lib
, buildPythonPackage
, fetchPypi
, google-api-core
, google-cloud-testutils
, grpc-google-iam-v1
, grpcio
, grpcio-status
, libcst
, proto-plus
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchPypi,
google-api-core,
google-cloud-testutils,
grpc-google-iam-v1,
grpcio,
grpcio-status,
libcst,
proto-plus,
protobuf,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -27,9 +28,7 @@ buildPythonPackage rec {
hash = "sha256-MfzwdES3+BOmFsS2UOH78dyZigiP4AWadhZIVawX8Fw=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
google-api-core
@ -42,9 +41,7 @@ buildPythonPackage rec {
] ++ google-api-core.optional-dependencies.grpc;
passthru.optional-dependencies = {
libcst = [
libcst
];
libcst = [ libcst ];
};
nativeCheckInputs = [
@ -63,9 +60,7 @@ buildPythonPackage rec {
"tests/unit/pubsub_v1"
];
pythonImportsCheck = [
"google.cloud.pubsub"
];
pythonImportsCheck = [ "google.cloud.pubsub" ];
meta = with lib; {
description = "Google Cloud Pub/Sub API client library";