about summary refs log tree commit diff
path: root/pkgs/development/python-modules/google-cloud-core/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/google-cloud-core/default.nix')
-rw-r--r--pkgs/development/python-modules/google-cloud-core/default.nix27
1 files changed, 12 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/google-cloud-core/default.nix b/pkgs/development/python-modules/google-cloud-core/default.nix
index 84168c911f28e..3213156bb49ac 100644
--- a/pkgs/development/python-modules/google-cloud-core/default.nix
+++ b/pkgs/development/python-modules/google-cloud-core/default.nix
@@ -1,12 +1,13 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, google-api-core
-, google-auth
-, grpcio
-, mock
-, pytestCheckHook
-, pythonOlder
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  google-api-core,
+  google-auth,
+  grpcio,
+  mock,
+  pytestCheckHook,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
@@ -27,9 +28,7 @@ buildPythonPackage rec {
   ];
 
   passthru.optional-dependencies = {
-    grpc = [
-      grpcio
-    ];
+    grpc = [ grpcio ];
   };
 
   nativeCheckInputs = [
@@ -42,9 +41,7 @@ buildPythonPackage rec {
     rm -r google
   '';
 
-  pythonImportsCheck = [
-    "google.cloud"
-  ];
+  pythonImportsCheck = [ "google.cloud" ];
 
   meta = with lib; {
     description = "API Client library for Google Cloud: Core Helpers";