lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.google-api-python-client: format with nixfmt

+14 -17
+14 -17
pkgs/development/python-modules/google-api-python-client/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , google-auth 5 - , google-auth-httplib2 6 - , google-api-core 7 - , httplib2 8 - , uritemplate 9 - , oauth2client 10 - , setuptools 11 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + google-auth, 6 + google-auth-httplib2, 7 + google-api-core, 8 + httplib2, 9 + uritemplate, 10 + oauth2client, 11 + setuptools, 12 + pythonOlder, 12 13 }: 13 14 14 15 buildPythonPackage rec { ··· 23 24 hash = "sha256-l8BBBjDivr0ZTZnpG9Yg2rW8a27AvwM/mpEJtwC4Oss="; 24 25 }; 25 26 26 - build-system = [ 27 - setuptools 28 - ]; 27 + build-system = [ setuptools ]; 29 28 30 29 dependencies = [ 31 30 google-auth ··· 39 38 # No tests included in archive 40 39 doCheck = false; 41 40 42 - pythonImportsCheck = [ 43 - "googleapiclient" 44 - ]; 41 + pythonImportsCheck = [ "googleapiclient" ]; 45 42 46 43 meta = with lib; { 47 44 description = "The official Python client library for Google's discovery based APIs";