pythonPackages:google*: Noramlize names by replacing _ with -

+209 -209
+1 -1
pkgs/applications/version-management/dvc/default.nix
··· 41 41 distro 42 42 appdirs 43 43 ] 44 - ++ lib.optional enableGoogle google_cloud_storage 44 + ++ lib.optional enableGoogle google-cloud-storage 45 45 ++ lib.optional enableAWS boto3 46 46 ++ lib.optional enableAzure azure-storage-blob 47 47 ++ lib.optional enableSSH paramiko;
+2 -2
pkgs/development/python-modules/cirq/default.nix
··· 5 5 , fetchFromGitHub 6 6 , fetchpatch 7 7 , freezegun 8 - , google_api_core 8 + , google-api-core 9 9 , matplotlib 10 10 , networkx 11 11 , numpy ··· 54 54 55 55 propagatedBuildInputs = [ 56 56 freezegun 57 - google_api_core 57 + google-api-core 58 58 numpy 59 59 matplotlib 60 60 networkx
+2 -2
pkgs/development/python-modules/google-api-python-client/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 - , google_auth, google-auth-httplib2, google_api_core 2 + , google-auth, google-auth-httplib2, google-api-core 3 3 , httplib2, six, uritemplate, oauth2client }: 4 4 5 5 buildPythonPackage rec { ··· 15 15 doCheck = false; 16 16 17 17 propagatedBuildInputs = [ 18 - google_auth google-auth-httplib2 google_api_core 18 + google-auth google-auth-httplib2 google-api-core 19 19 httplib2 six uritemplate oauth2client 20 20 ]; 21 21
+2 -2
pkgs/development/python-modules/google-auth-httplib2/default.nix
··· 3 3 , buildPythonPackage 4 4 , fetchPypi 5 5 , flask 6 - , google_auth 6 + , google-auth 7 7 , httplib2 8 8 , mock 9 9 , pytestCheckHook ··· 20 20 }; 21 21 22 22 propagatedBuildInputs = [ 23 - google_auth 23 + google-auth 24 24 httplib2 25 25 ]; 26 26
+2 -2
pkgs/development/python-modules/google-auth-oauthlib/default.nix
··· 4 4 , click 5 5 , mock 6 6 , pytestCheckHook 7 - , google_auth 7 + , google-auth 8 8 , requests_oauthlib 9 9 }: 10 10 ··· 18 18 }; 19 19 20 20 propagatedBuildInputs = [ 21 - google_auth 21 + google-auth 22 22 requests_oauthlib 23 23 ]; 24 24
+2 -2
pkgs/development/python-modules/google_api_core/default.nix pkgs/development/python-modules/google-api-core/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_auth 4 + , google-auth 5 5 , googleapis_common_protos 6 6 , grpcio 7 7 , protobuf ··· 24 24 25 25 propagatedBuildInputs = [ 26 26 googleapis_common_protos 27 - google_auth 27 + google-auth 28 28 grpcio 29 29 protobuf 30 30 pytz
pkgs/development/python-modules/google_apputils/default.nix pkgs/development/python-modules/google-apputils/default.nix
pkgs/development/python-modules/google_auth/default.nix pkgs/development/python-modules/google-auth/default.nix
+2 -2
pkgs/development/python-modules/google_cloud_access_context_manager/default.nix pkgs/development/python-modules/google-cloud-access-context-manager/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pythonOlder, google_api_core }: 1 + { lib, buildPythonPackage, fetchPypi, pythonOlder, google-api-core }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "google-cloud-access-context-manager"; ··· 9 9 sha256 = "1qy7wv1xn7g3x5z0vvv0pwmxhin4hw2m9fs9iklnghy00vg37v0b"; 10 10 }; 11 11 12 - propagatedBuildInputs = [ google_api_core ]; 12 + propagatedBuildInputs = [ google-api-core ]; 13 13 14 14 # No tests in repo 15 15 doCheck = false;
+10 -10
pkgs/development/python-modules/google_cloud_asset/default.nix pkgs/development/python-modules/google-cloud-asset/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , grpc_google_iam_v1 5 - , google_api_core 6 - , google_cloud_access_context_manager 7 - , google_cloud_org_policy 8 - , google_cloud_os_config 9 - , google_cloud_testutils 5 + , google-api-core 6 + , google-cloud-access-context-manager 7 + , google-cloud-org-policy 8 + , google-cloud-os-config 9 + , google-cloud-testutils 10 10 , libcst 11 11 , proto-plus 12 12 , pytest ··· 26 26 27 27 propagatedBuildInputs = [ 28 28 grpc_google_iam_v1 29 - google_api_core 30 - google_cloud_access_context_manager 31 - google_cloud_org_policy 32 - google_cloud_os_config 29 + google-api-core 30 + google-cloud-access-context-manager 31 + google-cloud-org-policy 32 + google-cloud-os-config 33 33 libcst 34 34 proto-plus 35 35 ]; 36 36 37 - checkInputs = [ google_cloud_testutils mock pytest-asyncio pytestCheckHook ]; 37 + checkInputs = [ google-cloud-testutils mock pytest-asyncio pytestCheckHook ]; 38 38 39 39 pythonImportsCheck = [ 40 40 "google.cloud.asset"
+6 -6
pkgs/development/python-modules/google_cloud_automl/default.nix pkgs/development/python-modules/google-cloud-automl/default.nix
··· 3 3 , fetchPypi 4 4 , pytestCheckHook 5 5 , libcst 6 - , google_api_core 7 - , google_cloud_storage 8 - , google_cloud_testutils 6 + , google-api-core 7 + , google-cloud-storage 8 + , google-cloud-testutils 9 9 , pandas 10 10 , proto-plus 11 11 , pytest-asyncio ··· 21 21 sha256 = "520dfe2ee04d28f3088c9c582fa2a534fc272647d5e2e59acc903c0152e61696"; 22 22 }; 23 23 24 - propagatedBuildInputs = [ google_api_core libcst proto-plus ]; 24 + propagatedBuildInputs = [ google-api-core libcst proto-plus ]; 25 25 26 26 checkInputs = [ 27 - google_cloud_storage 28 - google_cloud_testutils 27 + google-cloud-storage 28 + google-cloud-testutils 29 29 mock 30 30 pandas 31 31 pytest-asyncio
+6 -6
pkgs/development/python-modules/google_cloud_bigquery/default.nix pkgs/development/python-modules/google-cloud-bigquery/default.nix
··· 3 3 , fetchPypi 4 4 , pytestCheckHook 5 5 , freezegun 6 - , google_cloud_core 7 - , google_cloud_testutils 8 - , google_resumable_media 6 + , google-cloud-core 7 + , google-cloud-testutils 8 + , google-resumable-media 9 9 , grpcio 10 10 , ipython 11 11 , mock ··· 24 24 }; 25 25 26 26 propagatedBuildInputs = [ 27 - google_resumable_media 28 - google_cloud_core 27 + google-resumable-media 28 + google-cloud-core 29 29 proto-plus 30 30 pyarrow 31 31 ]; 32 32 33 33 checkInputs = [ 34 34 freezegun 35 - google_cloud_testutils 35 + google-cloud-testutils 36 36 ipython 37 37 mock 38 38 pandas
+2 -2
pkgs/development/python-modules/google_cloud_bigquery_datatransfer/default.nix pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 4 + , google-api-core 5 5 , libcst 6 6 , proto-plus 7 7 , pytestCheckHook ··· 18 18 sha256 = "0hmsqvs2srmqcwmli48vd5vw829zax3pwj63fsxig6sdhjlf6j7j"; 19 19 }; 20 20 21 - propagatedBuildInputs = [ google_api_core libcst proto-plus ]; 21 + propagatedBuildInputs = [ google-api-core libcst proto-plus ]; 22 22 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 23 23 24 24 pythonImportsCheck = [
+3 -3
pkgs/development/python-modules/google_cloud_bigtable/default.nix pkgs/development/python-modules/google-cloud-bigtable/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , grpc_google_iam_v1 5 - , google_api_core 6 - , google_cloud_core 5 + , google-api-core 6 + , google-cloud-core 7 7 , pytest 8 8 , mock 9 9 }: ··· 18 18 }; 19 19 20 20 checkInputs = [ pytest mock ]; 21 - propagatedBuildInputs = [ grpc_google_iam_v1 google_api_core google_cloud_core ]; 21 + propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core google-cloud-core ]; 22 22 23 23 checkPhase = '' 24 24 rm -r google
+2 -2
pkgs/development/python-modules/google_cloud_container/default.nix pkgs/development/python-modules/google-cloud-container/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 4 + , google-api-core 5 5 , grpc_google_iam_v1 6 6 , libcst 7 7 , mock ··· 19 19 sha256 = "04f9mx1wxy3l9dvzvvr579fnjp1fdqhgplv5y2gl7h2mvn281k8d"; 20 20 }; 21 21 22 - propagatedBuildInputs = [ google_api_core grpc_google_iam_v1 libcst proto-plus ]; 22 + propagatedBuildInputs = [ google-api-core grpc_google_iam_v1 libcst proto-plus ]; 23 23 24 24 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 25 25
+2 -2
pkgs/development/python-modules/google_cloud_core/default.nix pkgs/development/python-modules/google-cloud-core/default.nix
··· 4 4 , pythonOlder 5 5 , pytestCheckHook 6 6 , python 7 - , google_api_core 7 + , google-api-core 8 8 , grpcio 9 9 , mock 10 10 }: ··· 18 18 sha256 = "01liq4nrd2g3ingg8v0ly4c86db8agnr9h1fiz219c7fz0as0xqj"; 19 19 }; 20 20 21 - propagatedBuildInputs = [ google_api_core ]; 21 + propagatedBuildInputs = [ google-api-core ]; 22 22 23 23 checkInputs = [ mock pytestCheckHook ]; 24 24
+2 -2
pkgs/development/python-modules/google_cloud_dataproc/default.nix pkgs/development/python-modules/google-cloud-dataproc/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 4 + , google-api-core 5 5 , mock 6 6 , libcst 7 7 , proto-plus ··· 18 18 sha256 = "07rv2kgbaqkbd71k5i2zn9kcxasfzkkyai8jnbszhkf92k0lmi41"; 19 19 }; 20 20 21 - propagatedBuildInputs = [ google_api_core libcst proto-plus ]; 21 + propagatedBuildInputs = [ google-api-core libcst proto-plus ]; 22 22 23 23 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 24 24
+5 -5
pkgs/development/python-modules/google_cloud_datastore/default.nix pkgs/development/python-modules/google-cloud-datastore/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 5 - , google_cloud_core 4 + , google-api-core 5 + , google-cloud-core 6 6 , libcst 7 7 , proto-plus 8 8 , mock 9 9 , pytestCheckHook 10 10 , pytest-asyncio 11 - , google_cloud_testutils 11 + , google-cloud-testutils 12 12 }: 13 13 14 14 buildPythonPackage rec { ··· 20 20 sha256 = "1yyk9ix1jms5q4kk76cfxzy42wzzyl5qladdswjy5l0pg6iypr8i"; 21 21 }; 22 22 23 - propagatedBuildInputs = [ google_api_core google_cloud_core libcst proto-plus ]; 23 + propagatedBuildInputs = [ google-api-core google-cloud-core libcst proto-plus ]; 24 24 25 - checkInputs = [ google_cloud_testutils mock pytestCheckHook pytest-asyncio ]; 25 + checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ]; 26 26 27 27 preCheck = '' 28 28 # directory shadows imports
+4 -4
pkgs/development/python-modules/google_cloud_dlp/default.nix pkgs/development/python-modules/google-cloud-dlp/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 5 - , google_cloud_testutils 4 + , google-api-core 5 + , google-cloud-testutils 6 6 , libcst 7 7 , proto-plus 8 8 , pytestCheckHook ··· 19 19 sha256 = "09rnzpdlycr1wv8agcfx05v1prn35ylphsbr07486zqdkh5wjk8p"; 20 20 }; 21 21 22 - propagatedBuildInputs = [ google_api_core libcst proto-plus ]; 22 + propagatedBuildInputs = [ google-api-core libcst proto-plus ]; 23 23 24 - checkInputs = [ google_cloud_testutils mock pytestCheckHook pytest-asyncio ]; 24 + checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ]; 25 25 26 26 disabledTests = [ 27 27 # requires credentials
+3 -3
pkgs/development/python-modules/google_cloud_dns/default.nix pkgs/development/python-modules/google-cloud-dns/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 5 - , google_cloud_core 4 + , google-api-core 5 + , google-cloud-core 6 6 , pytestCheckHook 7 7 , mock 8 8 }: ··· 16 16 sha256 = "01l6pvfic0vxcvd97ckbxyc7ccr9vb9ln4lyhpp3amdmcy0far3j"; 17 17 }; 18 18 19 - propagatedBuildInputs = [ google_api_core google_cloud_core ]; 19 + propagatedBuildInputs = [ google-api-core google-cloud-core ]; 20 20 21 21 checkInputs = [ mock pytestCheckHook ]; 22 22
+4 -4
pkgs/development/python-modules/google_cloud_error_reporting/default.nix pkgs/development/python-modules/google-cloud-error-reporting/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 - , google_cloud_logging 6 - , google_cloud_testutils 5 + , google-cloud-logging 6 + , google-cloud-testutils 7 7 , libcst 8 8 , mock 9 9 , proto-plus ··· 19 19 sha256 = "2fd6fe25343f7017c22e2733a0358c64b3171edc1669d0c8a1e1f07f86a048c4"; 20 20 }; 21 21 22 - propagatedBuildInputs = [ google_cloud_logging libcst proto-plus ]; 22 + propagatedBuildInputs = [ google-cloud-logging libcst proto-plus ]; 23 23 24 - checkInputs = [ google_cloud_testutils mock pytestCheckHook pytest-asyncio ]; 24 + checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ]; 25 25 26 26 disabledTests = [ 27 27 # require credentials
+6 -6
pkgs/development/python-modules/google_cloud_firestore/default.nix pkgs/development/python-modules/google-cloud-firestore/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , aiounittest 5 - , google_api_core 6 - , google_cloud_testutils 7 - , google_cloud_core 5 + , google-api-core 6 + , google-cloud-testutils 7 + , google-cloud-core 8 8 , mock 9 9 , proto-plus 10 10 , pytestCheckHook ··· 21 21 }; 22 22 23 23 propagatedBuildInputs = [ 24 - google_api_core 25 - google_cloud_core 24 + google-api-core 25 + google-cloud-core 26 26 proto-plus 27 27 ]; 28 28 29 29 checkInputs = [ 30 30 aiounittest 31 - google_cloud_testutils 31 + google-cloud-testutils 32 32 mock 33 33 pytestCheckHook 34 34 pytest-asyncio
+2 -2
pkgs/development/python-modules/google_cloud_iam/default.nix pkgs/development/python-modules/google-cloud-iam/default.nix
··· 3 3 , fetchPypi 4 4 , pytestCheckHook 5 5 , pythonOlder 6 - , google_api_core 6 + , google-api-core 7 7 , libcst 8 8 , mock 9 9 , proto-plus ··· 19 19 sha256 = "1zxsx5avs8njiyw32zvsx2yblmmiwxy771x334hbgmy0aqms4lak"; 20 20 }; 21 21 22 - propagatedBuildInputs = [ google_api_core libcst proto-plus ]; 22 + propagatedBuildInputs = [ google-api-core libcst proto-plus ]; 23 23 24 24 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 25 25
+2 -2
pkgs/development/python-modules/google_cloud_iot/default.nix pkgs/development/python-modules/google-cloud-iot/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , grpc_google_iam_v1 5 - , google_api_core 5 + , google-api-core 6 6 , libcst 7 7 , proto-plus 8 8 , pytestCheckHook ··· 19 19 sha256 = "08spn5g0s386x21dgwb46na8aknbwq5d1sn8bh6kayk9fjfbxwla"; 20 20 }; 21 21 22 - propagatedBuildInputs = [ grpc_google_iam_v1 google_api_core libcst proto-plus ]; 22 + propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core libcst proto-plus ]; 23 23 24 24 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 25 25
+2 -2
pkgs/development/python-modules/google_cloud_kms/default.nix pkgs/development/python-modules/google-cloud-kms/default.nix
··· 3 3 , fetchPypi 4 4 , pytestCheckHook 5 5 , grpc_google_iam_v1 6 - , google_api_core 6 + , google-api-core 7 7 , libcst 8 8 , mock 9 9 , proto-plus ··· 19 19 sha256 = "0f3k2ixp1zsgydpvkj75bs2mb805389snyw30hn41c38qq5ksdga"; 20 20 }; 21 21 22 - propagatedBuildInputs = [ grpc_google_iam_v1 google_api_core libcst proto-plus ]; 22 + propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core libcst proto-plus ]; 23 23 24 24 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 25 25
+2 -2
pkgs/development/python-modules/google_cloud_language/default.nix pkgs/development/python-modules/google-cloud-language/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 4 + , google-api-core 5 5 , libcst 6 6 , mock 7 7 , proto-plus ··· 18 18 sha256 = "123vqfrn7pyn3ia7cmhx8bgafd4gxxlmhf33s3vgspyjck6sprxb"; 19 19 }; 20 20 21 - propagatedBuildInputs = [ google_api_core libcst proto-plus ]; 21 + propagatedBuildInputs = [ google-api-core libcst proto-plus ]; 22 22 23 23 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 24 24
+5 -5
pkgs/development/python-modules/google_cloud_logging/default.nix pkgs/development/python-modules/google-cloud-logging/default.nix
··· 3 3 , fetchPypi 4 4 , django 5 5 , flask 6 - , google_api_core 7 - , google_cloud_core 8 - , google_cloud_testutils 6 + , google-api-core 7 + , google-cloud-core 8 + , google-cloud-testutils 9 9 , mock 10 10 , proto-plus 11 11 , pytestCheckHook ··· 22 22 sha256 = "0s09vs4rnq4637j8zw7grv3f4j7njqprm744b1knzldj91rg0vmi"; 23 23 }; 24 24 25 - propagatedBuildInputs = [ google_api_core google_cloud_core proto-plus ]; 25 + propagatedBuildInputs = [ google-api-core google-cloud-core proto-plus ]; 26 26 27 27 checkInputs = [ 28 28 django 29 29 flask 30 - google_cloud_testutils 30 + google-cloud-testutils 31 31 mock 32 32 pytestCheckHook 33 33 pytest-asyncio
+4 -4
pkgs/development/python-modules/google_cloud_monitoring/default.nix pkgs/development/python-modules/google-cloud-monitoring/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 5 - , google_cloud_testutils 4 + , google-api-core 5 + , google-cloud-testutils 6 6 , libcst 7 7 , proto-plus 8 8 , pytestCheckHook ··· 19 19 sha256 = "07r0y995fin6cbnqlhmd38fv3pfhhqyw04l7nr38sldrd82gmsqx"; 20 20 }; 21 21 22 - propagatedBuildInputs = [ libcst google_api_core proto-plus ]; 22 + propagatedBuildInputs = [ libcst google-api-core proto-plus ]; 23 23 24 - checkInputs = [ google_cloud_testutils mock pytestCheckHook pytest-asyncio ]; 24 + checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ]; 25 25 26 26 disabledTests = [ 27 27 # requires credentials
+2 -2
pkgs/development/python-modules/google_cloud_org_policy/default.nix pkgs/development/python-modules/google-cloud-org-policy/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pythonOlder, google_api_core }: 1 + { lib, buildPythonPackage, fetchPypi, pythonOlder, google-api-core }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "google-cloud-org-policy"; ··· 9 9 sha256 = "0ncgcnbvmgqph54yh2pjx2hh82gnkhsrw5yirp4wlf7jclh6j9xh"; 10 10 }; 11 11 12 - propagatedBuildInputs = [ google_api_core ]; 12 + propagatedBuildInputs = [ google-api-core ]; 13 13 14 14 # No tests in repo 15 15 doCheck = false;
+2 -2
pkgs/development/python-modules/google_cloud_os_config/default.nix pkgs/development/python-modules/google-cloud-os-config/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, google_api_core, libcst, mock, proto-plus, pytestCheckHook, pytest-asyncio }: 1 + { lib, buildPythonPackage, fetchPypi, google-api-core, libcst, mock, proto-plus, pytestCheckHook, pytest-asyncio }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "google-cloud-os-config"; ··· 9 9 sha256 = "07zvagy9hwaccwvg1xad5nkalgkria0maa5yxiwqf1yk9f7gbyq1"; 10 10 }; 11 11 12 - propagatedBuildInputs = [ google_api_core libcst proto-plus ]; 12 + propagatedBuildInputs = [ google-api-core libcst proto-plus ]; 13 13 14 14 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 15 15
+4 -4
pkgs/development/python-modules/google_cloud_pubsub/default.nix pkgs/development/python-modules/google-cloud-pubsub/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 - , google_api_core 6 - , google_cloud_testutils 5 + , google-api-core 6 + , google-cloud-testutils 7 7 , grpc_google_iam_v1 8 8 , libcst 9 9 , mock ··· 20 20 sha256 = "1rfdbkxbndi00wx9dx733ihp3hmcsk6k23pcjni0ki7m0c4acl5w"; 21 21 }; 22 22 23 - propagatedBuildInputs = [ grpc_google_iam_v1 google_api_core libcst proto-plus ]; 23 + propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core libcst proto-plus ]; 24 24 25 - checkInputs = [ google_cloud_testutils mock pytestCheckHook pytest-asyncio ]; 25 + checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ]; 26 26 27 27 preCheck = '' 28 28 # prevent google directory from shadowing google imports
+2 -2
pkgs/development/python-modules/google_cloud_redis/default.nix pkgs/development/python-modules/google-cloud-redis/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 4 + , google-api-core 5 5 , libcst 6 6 , mock 7 7 , proto-plus ··· 18 18 sha256 = "1f67mr473vzv0qgjm4hycfnrjgiqrsv47vqrynwjy9yrca2130y7"; 19 19 }; 20 20 21 - propagatedBuildInputs = [ google_api_core libcst proto-plus ]; 21 + propagatedBuildInputs = [ google-api-core libcst proto-plus ]; 22 22 23 23 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 24 24
+3 -3
pkgs/development/python-modules/google_cloud_resource_manager/default.nix pkgs/development/python-modules/google-cloud-resource-manager/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 - , google_cloud_core 6 - , google_api_core 5 + , google-cloud-core 6 + , google-api-core 7 7 , mock 8 8 }: 9 9 ··· 16 16 sha256 = "1la643vkf6fm2gapz57cm92xzvmhzgpzv3bb6112yz1cizrvnxrm"; 17 17 }; 18 18 19 - propagatedBuildInputs = [ google_api_core google_cloud_core ]; 19 + propagatedBuildInputs = [ google-api-core google-cloud-core ]; 20 20 21 21 checkInputs = [ mock pytestCheckHook ]; 22 22
+3 -3
pkgs/development/python-modules/google_cloud_runtimeconfig/default.nix pkgs/development/python-modules/google-cloud-runtimeconfig/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 5 - , google_cloud_core 4 + , google-api-core 5 + , google-cloud-core 6 6 , mock 7 7 , pytestCheckHook 8 8 }: ··· 16 16 sha256 = "1bd8hlp0ssi20ds4gknbxai8mih6xiz8b60ab7p0ngpdqp1kw52p"; 17 17 }; 18 18 19 - propagatedBuildInputs = [ google_api_core google_cloud_core ]; 19 + propagatedBuildInputs = [ google-api-core google-cloud-core ]; 20 20 21 21 checkInputs = [ mock pytestCheckHook ]; 22 22
+2 -2
pkgs/development/python-modules/google_cloud_secret_manager/default.nix pkgs/development/python-modules/google-cloud-secret-manager/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 4 + , google-api-core 5 5 , grpc_google_iam_v1 6 6 , libcst 7 7 , mock ··· 20 20 }; 21 21 22 22 propagatedBuildInputs = [ 23 - google_api_core 23 + google-api-core 24 24 grpc_google_iam_v1 25 25 libcst 26 26 proto-plus
+2 -2
pkgs/development/python-modules/google_cloud_securitycenter/default.nix pkgs/development/python-modules/google-cloud-securitycenter/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , grpc_google_iam_v1 5 - , google_api_core 5 + , google-api-core 6 6 , libcst 7 7 , mock 8 8 , proto-plus ··· 19 19 sha256 = "1lgz6qpsfv4b7p5ff4sdpjpaddxpbazdvlcrqr1i0c0qil2lkm2i"; 20 20 }; 21 21 22 - propagatedBuildInputs = [ grpc_google_iam_v1 google_api_core libcst proto-plus ]; 22 + propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core libcst proto-plus ]; 23 23 24 24 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 25 25
+4 -4
pkgs/development/python-modules/google_cloud_spanner/default.nix pkgs/development/python-modules/google-cloud-spanner/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , grpc_google_iam_v1 5 - , google_cloud_core 6 - , google_cloud_testutils 5 + , google-cloud-core 6 + , google-cloud-testutils 7 7 , libcst 8 8 , mock 9 9 , proto-plus ··· 26 26 --replace '"proto-plus == 1.11.0"' '"proto-plus"' 27 27 ''; 28 28 29 - propagatedBuildInputs = [ google_cloud_core grpc_google_iam_v1 libcst proto-plus sqlparse ]; 29 + propagatedBuildInputs = [ google-cloud-core grpc_google_iam_v1 libcst proto-plus sqlparse ]; 30 30 31 - checkInputs = [ google_cloud_testutils mock pytestCheckHook pytest-asyncio ]; 31 + checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ]; 32 32 33 33 preCheck = '' 34 34 # prevent google directory from shadowing google imports
+2 -2
pkgs/development/python-modules/google_cloud_speech/default.nix pkgs/development/python-modules/google-cloud-speech/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 4 + , google-api-core 5 5 , libcst 6 6 , mock 7 7 , proto-plus ··· 18 18 sha256 = "0ch85h5xrb15fcml5v0f30s0niw02k4v8gi7i8a40161yj882hm7"; 19 19 }; 20 20 21 - propagatedBuildInputs = [ libcst google_api_core proto-plus ]; 21 + propagatedBuildInputs = [ libcst google-api-core proto-plus ]; 22 22 23 23 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 24 24
+12 -12
pkgs/development/python-modules/google_cloud_storage/default.nix pkgs/development/python-modules/google-cloud-storage/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 - , google_auth 6 - , google_cloud_iam 7 - , google_cloud_core 8 - , google_cloud_kms 9 - , google_cloud_testutils 10 - , google_resumable_media 5 + , google-auth 6 + , google-cloud-iam 7 + , google-cloud-core 8 + , google-cloud-kms 9 + , google-cloud-testutils 10 + , google-resumable-media 11 11 , mock 12 12 }: 13 13 ··· 21 21 }; 22 22 23 23 propagatedBuildInputs = [ 24 - google_auth 25 - google_cloud_core 26 - google_resumable_media 24 + google-auth 25 + google-cloud-core 26 + google-resumable-media 27 27 ]; 28 28 29 29 checkInputs = [ 30 - google_cloud_iam 31 - google_cloud_kms 32 - google_cloud_testutils 30 + google-cloud-iam 31 + google-cloud-kms 32 + google-cloud-testutils 33 33 mock 34 34 pytestCheckHook 35 35 ];
+2 -2
pkgs/development/python-modules/google_cloud_tasks/default.nix pkgs/development/python-modules/google-cloud-tasks/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 4 + , google-api-core 5 5 , grpc_google_iam_v1 6 6 , libcst 7 7 , mock ··· 19 19 sha256 = "1jsf7y88lvln9r08pmx673ibmgw397qmir5drrcfvlmgqvszp7qx"; 20 20 }; 21 21 22 - propagatedBuildInputs = [ google_api_core grpc_google_iam_v1 libcst proto-plus ]; 22 + propagatedBuildInputs = [ google-api-core grpc_google_iam_v1 libcst proto-plus ]; 23 23 24 24 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 25 25
+2 -2
pkgs/development/python-modules/google_cloud_testutils/default.nix pkgs/development/python-modules/google-cloud-testutils/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchPypi, google_auth, six }: 1 + { stdenv, buildPythonPackage, fetchPypi, google-auth, six }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "google-cloud-testutils"; ··· 9 9 sha256 = "1bn1pz00lxym3vkl6l45b3nydpmfdvmylwggh2lspldrxwx39a0k"; 10 10 }; 11 11 12 - propagatedBuildInputs = [ google_auth six ]; 12 + propagatedBuildInputs = [ google-auth six ]; 13 13 14 14 # does not contain tests 15 15 doCheck = false;
+2 -2
pkgs/development/python-modules/google_cloud_texttospeech/default.nix pkgs/development/python-modules/google-cloud-texttospeech/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 - , google_api_core 5 + , google-api-core 6 6 , libcst 7 7 , mock 8 8 , proto-plus ··· 18 18 sha256 = "17igfwh34369gkvsbrm46j1ii61i6268wg2g2dl9c65nf9z3kgfb"; 19 19 }; 20 20 21 - propagatedBuildInputs = [ libcst google_api_core proto-plus ]; 21 + propagatedBuildInputs = [ libcst google-api-core proto-plus ]; 22 22 23 23 checkInputs = [ mock pytest-asyncio pytestCheckHook ]; 24 24
+5 -5
pkgs/development/python-modules/google_cloud_trace/default.nix pkgs/development/python-modules/google-cloud-trace/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 5 - , google_cloud_core 6 - , google_cloud_testutils 4 + , google-api-core 5 + , google-cloud-core 6 + , google-cloud-testutils 7 7 , mock 8 8 , proto-plus 9 9 , pytestCheckHook ··· 19 19 sha256 = "1lvcm4w1l7hiqg64kdscch3f3bq19q9ii49xj4lljn2a4xffxl8v"; 20 20 }; 21 21 22 - propagatedBuildInputs = [ google_api_core google_cloud_core proto-plus ]; 22 + propagatedBuildInputs = [ google-api-core google-cloud-core proto-plus ]; 23 23 24 - checkInputs = [ google_cloud_testutils mock pytestCheckHook pytest-asyncio ]; 24 + checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ]; 25 25 26 26 disabledTests = [ 27 27 # require credentials
+5 -5
pkgs/development/python-modules/google_cloud_translate/default.nix pkgs/development/python-modules/google-cloud-translate/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 - , google_api_core 6 - , google_cloud_core 7 - , google_cloud_testutils 5 + , google-api-core 6 + , google-cloud-core 7 + , google-cloud-testutils 8 8 , grpcio 9 9 , libcst 10 10 , mock ··· 21 21 sha256 = "1s2gvlzfqd2gsrzaz7yl9q8s1k03dlsjahgg95s017vlcn21d0v1"; 22 22 }; 23 23 24 - propagatedBuildInputs = [ google_api_core google_cloud_core libcst proto-plus ]; 24 + propagatedBuildInputs = [ google-api-core google-cloud-core libcst proto-plus ]; 25 25 26 - checkInputs = [ google_cloud_testutils mock pytestCheckHook pytest-asyncio ]; 26 + checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ]; 27 27 28 28 preCheck = '' 29 29 # prevent shadowing imports
+4 -4
pkgs/development/python-modules/google_cloud_videointelligence/default.nix pkgs/development/python-modules/google-cloud-videointelligence/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , mock 5 - , google_api_core 6 - , google_cloud_testutils 5 + , google-api-core 6 + , google-cloud-testutils 7 7 , proto-plus 8 8 , pytestCheckHook 9 9 , pytest-asyncio ··· 18 18 sha256 = "1yhmizig41ymr2dz0i6ccrwszp0ivyykmq11vqxp82l9ncjima82"; 19 19 }; 20 20 21 - propagatedBuildInputs = [ google_api_core proto-plus ]; 21 + propagatedBuildInputs = [ google-api-core proto-plus ]; 22 22 23 - checkInputs = [ google_cloud_testutils mock pytestCheckHook pytest-asyncio ]; 23 + checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ]; 24 24 25 25 disabledTests = [ 26 26 # require credentials
+2 -2
pkgs/development/python-modules/google_cloud_vision/default.nix pkgs/development/python-modules/google-cloud-vision/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_api_core 4 + , google-api-core 5 5 , libcst 6 6 , mock 7 7 , proto-plus ··· 18 18 sha256 = "0qbwhapmn5ia853c4nfnz1qiksngvr8j0xxjasrykwhxcsd7s1ka"; 19 19 }; 20 20 21 - propagatedBuildInputs = [ libcst google_api_core proto-plus]; 21 + propagatedBuildInputs = [ libcst google-api-core proto-plus]; 22 22 23 23 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 24 24
+2 -2
pkgs/development/python-modules/google_cloud_websecurityscanner/default.nix pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 - , google_api_core 5 + , google-api-core 6 6 , libcst 7 7 , mock 8 8 , proto-plus ··· 18 18 sha256 = "14sky9bkl00n65ksig3f6psm31pkmkvlcprlk6s9if470j40zrhx"; 19 19 }; 20 20 21 - propagatedBuildInputs = [ google_api_core libcst proto-plus ]; 21 + propagatedBuildInputs = [ google-api-core libcst proto-plus ]; 22 22 23 23 checkInputs = [ mock pytest-asyncio pytestCheckHook ]; 24 24
pkgs/development/python-modules/google_crc32c/default.nix pkgs/development/python-modules/google-crc32c/default.nix
+5 -5
pkgs/development/python-modules/google_resumable_media/default.nix pkgs/development/python-modules/google-resumable-media/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , google_auth 5 - , google_cloud_testutils 6 - , google_crc32c 4 + , google-auth 5 + , google-cloud-testutils 6 + , google-crc32c 7 7 , mock 8 8 , pytestCheckHook 9 9 , pytest-asyncio ··· 19 19 sha256 = "0hwxdgsqh6933kp4jkv6hwwdcqs7bgjn9j08ga399njv3s9b367f"; 20 20 }; 21 21 22 - propagatedBuildInputs = [ google_auth google_crc32c requests ]; 22 + propagatedBuildInputs = [ google-auth google-crc32c requests ]; 23 23 24 - checkInputs = [ google_auth google_cloud_testutils mock pytestCheckHook pytest-asyncio ]; 24 + checkInputs = [ google-auth google-cloud-testutils mock pytestCheckHook pytest-asyncio ]; 25 25 26 26 preCheck = '' 27 27 # prevent shadowing imports
+2 -2
pkgs/development/python-modules/gspread/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , requests 5 - , google_auth 5 + , google-auth 6 6 , google-auth-oauthlib 7 7 }: 8 8 ··· 15 15 sha256 = "e04f1a6267b3929fc1600424c5ec83906d439672cafdd61a9d5b916a139f841c"; 16 16 }; 17 17 18 - propagatedBuildInputs = [ requests google_auth google-auth-oauthlib ]; 18 + propagatedBuildInputs = [ requests google-auth google-auth-oauthlib ]; 19 19 20 20 meta = with stdenv.lib; { 21 21 description = "Google Spreadsheets client library";
+2 -2
pkgs/development/python-modules/kubernetes/default.nix
··· 1 1 { stdenv, buildPythonPackage, fetchPypi, pythonAtLeast, 2 - ipaddress, websocket_client, urllib3, pyyaml, requests_oauthlib, python-dateutil, google_auth, adal, 2 + ipaddress, websocket_client, urllib3, pyyaml, requests_oauthlib, python-dateutil, google-auth, adal, 3 3 isort, pytest, coverage, mock, sphinx, autopep8, pep8, codecov, recommonmark, nose }: 4 4 5 5 buildPythonPackage rec { ··· 28 28 }; 29 29 30 30 checkInputs = [ isort coverage pytest mock sphinx autopep8 pep8 codecov recommonmark nose ]; 31 - propagatedBuildInputs = [ ipaddress websocket_client urllib3 pyyaml requests_oauthlib python-dateutil google_auth adal ]; 31 + propagatedBuildInputs = [ ipaddress websocket_client urllib3 pyyaml requests_oauthlib python-dateutil google-auth adal ]; 32 32 33 33 meta = with stdenv.lib; { 34 34 description = "Kubernetes python client";
+2 -2
pkgs/development/python-modules/labelbox/default.nix
··· 8 8 , shapely 9 9 , ndjson 10 10 , backoff 11 - , google_api_core 11 + , google-api-core 12 12 }: 13 13 14 14 buildPythonPackage rec { ··· 22 22 23 23 propagatedBuildInputs = [ 24 24 jinja2 requests pillow rasterio shapely ndjson backoff 25 - google_api_core 25 + google-api-core 26 26 ]; 27 27 28 28 # Test cases are not running on pypi or GitHub
+3 -3
pkgs/development/python-modules/protobuf/default.nix
··· 5 5 , buildPythonPackage 6 6 , isPy37 7 7 , protobuf 8 - , google_apputils 8 + , google-apputils 9 9 , six 10 10 , pyext 11 11 , libcxx ··· 29 29 30 30 outputs = [ "out" "dev" ]; 31 31 32 - propagatedBuildInputs = [ six ] ++ optionals isPy27 [ google_apputils ]; 32 + propagatedBuildInputs = [ six ] ++ optionals isPy27 [ google-apputils ]; 33 33 propagatedNativeBuildInputs = [ buildPackages.protobuf ]; # For protoc. 34 - nativeBuildInputs = [ pyext ] ++ optionals isPy27 [ google_apputils ]; 34 + nativeBuildInputs = [ pyext ] ++ optionals isPy27 [ google-apputils ]; 35 35 buildInputs = [ protobuf ]; 36 36 37 37 patches = optional (isPy37 && (versionOlder protobuf.version "3.6.1.2"))
+2 -2
pkgs/servers/home-assistant/component-packages.nix
··· 310 310 "gogogate2" = ps: with ps; [ ]; # missing inputs: gogogate2-api 311 311 "google" = ps: with ps; [ google_api_python_client httplib2 oauth2client ]; 312 312 "google_assistant" = ps: with ps; [ aiohttp-cors ]; 313 - "google_cloud" = ps: with ps; [ google_cloud_texttospeech ]; 313 + "google_cloud" = ps: with ps; [ google-cloud-texttospeech ]; 314 314 "google_domains" = ps: with ps; [ ]; 315 315 "google_maps" = ps: with ps; [ ]; # missing inputs: locationsharinglib 316 - "google_pubsub" = ps: with ps; [ google_cloud_pubsub ]; 316 + "google_pubsub" = ps: with ps; [ google-cloud-pubsub ]; 317 317 "google_translate" = ps: with ps; [ gtts ]; 318 318 "google_travel_time" = ps: with ps; [ googlemaps ]; 319 319 "google_wifi" = ps: with ps; [ ];
+1 -1
pkgs/tools/backup/s3ql/default.nix
··· 14 14 checkInputs = [ which ] ++ (with python3Packages; [ cython pytest ]); 15 15 propagatedBuildInputs = with python3Packages; [ 16 16 sqlite apsw pycrypto requests defusedxml dugong llfuse 17 - cython pytest pytest-catchlog google_auth google-auth-oauthlib 17 + cython pytest pytest-catchlog google-auth google-auth-oauthlib 18 18 ]; 19 19 20 20 preBuild = ''
+1 -1
pkgs/tools/backup/wal-e/default.nix
··· 17 17 propagatedBuildInputs = (with python3Packages; [ 18 18 boto 19 19 gevent 20 - google_cloud_storage 20 + google-cloud-storage 21 21 ]) ++ [ 22 22 postgresql 23 23 lzop
+44 -44
pkgs/top-level/python-packages.nix
··· 2500 2500 2501 2501 goocalendar = callPackage ../development/python-modules/goocalendar { }; 2502 2502 2503 - google_api_core = callPackage ../development/python-modules/google_api_core { }; 2503 + google-api-core = callPackage ../development/python-modules/google-api-core { }; 2504 2504 2505 2505 google_api_python_client = 2506 2506 let google_api_python_client = callPackage ../development/python-modules/google-api-python-client { }; ··· 2517 2517 2518 2518 googleapis_common_protos = callPackage ../development/python-modules/googleapis_common_protos { }; 2519 2519 2520 - google_apputils = callPackage ../development/python-modules/google_apputils { }; 2520 + google-apputils = callPackage ../development/python-modules/google-apputils { }; 2521 2521 2522 - google_auth = callPackage ../development/python-modules/google_auth { }; 2522 + google-auth = callPackage ../development/python-modules/google-auth { }; 2523 2523 2524 2524 google-auth-httplib2 = callPackage ../development/python-modules/google-auth-httplib2 { }; 2525 2525 2526 2526 google-auth-oauthlib = callPackage ../development/python-modules/google-auth-oauthlib { }; 2527 2527 2528 - google_cloud_access_context_manager = callPackage ../development/python-modules/google_cloud_access_context_manager { }; 2528 + google-cloud-access-context-manager = callPackage ../development/python-modules/google-cloud-access-context-manager { }; 2529 2529 2530 - google_cloud_asset = callPackage ../development/python-modules/google_cloud_asset { }; 2530 + google-cloud-asset = callPackage ../development/python-modules/google-cloud-asset { }; 2531 2531 2532 - google_cloud_automl = callPackage ../development/python-modules/google_cloud_automl { }; 2532 + google-cloud-automl = callPackage ../development/python-modules/google-cloud-automl { }; 2533 2533 2534 - google_cloud_bigquery = callPackage ../development/python-modules/google_cloud_bigquery { }; 2534 + google-cloud-bigquery = callPackage ../development/python-modules/google-cloud-bigquery { }; 2535 2535 2536 - google_cloud_bigquery_datatransfer = callPackage ../development/python-modules/google_cloud_bigquery_datatransfer { }; 2536 + google-cloud-bigquery-datatransfer = callPackage ../development/python-modules/google-cloud-bigquery-datatransfer { }; 2537 2537 2538 - google_cloud_bigtable = callPackage ../development/python-modules/google_cloud_bigtable { }; 2538 + google-cloud-bigtable = callPackage ../development/python-modules/google-cloud-bigtable { }; 2539 2539 2540 - google_cloud_container = callPackage ../development/python-modules/google_cloud_container { }; 2540 + google-cloud-container = callPackage ../development/python-modules/google-cloud-container { }; 2541 2541 2542 - google_cloud_core = callPackage ../development/python-modules/google_cloud_core { }; 2542 + google-cloud-core = callPackage ../development/python-modules/google-cloud-core { }; 2543 2543 2544 - google_cloud_dataproc = callPackage ../development/python-modules/google_cloud_dataproc { }; 2544 + google-cloud-dataproc = callPackage ../development/python-modules/google-cloud-dataproc { }; 2545 2545 2546 - google_cloud_datastore = callPackage ../development/python-modules/google_cloud_datastore { }; 2546 + google-cloud-datastore = callPackage ../development/python-modules/google-cloud-datastore { }; 2547 2547 2548 - google_cloud_dlp = callPackage ../development/python-modules/google_cloud_dlp { }; 2548 + google-cloud-dlp = callPackage ../development/python-modules/google-cloud-dlp { }; 2549 2549 2550 - google_cloud_dns = callPackage ../development/python-modules/google_cloud_dns { }; 2550 + google-cloud-dns = callPackage ../development/python-modules/google-cloud-dns { }; 2551 2551 2552 - google_cloud_error_reporting = callPackage ../development/python-modules/google_cloud_error_reporting { }; 2552 + google-cloud-error-reporting = callPackage ../development/python-modules/google-cloud-error-reporting { }; 2553 2553 2554 - google_cloud_firestore = callPackage ../development/python-modules/google_cloud_firestore { }; 2554 + google-cloud-firestore = callPackage ../development/python-modules/google-cloud-firestore { }; 2555 2555 2556 - google_cloud_iam = callPackage ../development/python-modules/google_cloud_iam { }; 2556 + google-cloud-iam = callPackage ../development/python-modules/google-cloud-iam { }; 2557 2557 2558 - google_cloud_iot = callPackage ../development/python-modules/google_cloud_iot { }; 2558 + google-cloud-iot = callPackage ../development/python-modules/google-cloud-iot { }; 2559 2559 2560 - google_cloud_kms = callPackage ../development/python-modules/google_cloud_kms { }; 2560 + google-cloud-kms = callPackage ../development/python-modules/google-cloud-kms { }; 2561 2561 2562 - google_cloud_language = callPackage ../development/python-modules/google_cloud_language { }; 2562 + google-cloud-language = callPackage ../development/python-modules/google-cloud-language { }; 2563 2563 2564 - google_cloud_logging = callPackage ../development/python-modules/google_cloud_logging { }; 2564 + google-cloud-logging = callPackage ../development/python-modules/google-cloud-logging { }; 2565 2565 2566 - google_cloud_monitoring = callPackage ../development/python-modules/google_cloud_monitoring { }; 2566 + google-cloud-monitoring = callPackage ../development/python-modules/google-cloud-monitoring { }; 2567 2567 2568 - google_cloud_org_policy = callPackage ../development/python-modules/google_cloud_org_policy { }; 2568 + google-cloud-org-policy = callPackage ../development/python-modules/google-cloud-org-policy { }; 2569 2569 2570 - google_cloud_os_config = callPackage ../development/python-modules/google_cloud_os_config { }; 2570 + google-cloud-os-config = callPackage ../development/python-modules/google-cloud-os-config { }; 2571 2571 2572 - google_cloud_pubsub = callPackage ../development/python-modules/google_cloud_pubsub { }; 2572 + google-cloud-pubsub = callPackage ../development/python-modules/google-cloud-pubsub { }; 2573 2573 2574 - google_cloud_redis = callPackage ../development/python-modules/google_cloud_redis { }; 2574 + google-cloud-redis = callPackage ../development/python-modules/google-cloud-redis { }; 2575 2575 2576 - google_cloud_resource_manager = callPackage ../development/python-modules/google_cloud_resource_manager { }; 2576 + google-cloud-resource-manager = callPackage ../development/python-modules/google-cloud-resource-manager { }; 2577 2577 2578 - google_cloud_runtimeconfig = callPackage ../development/python-modules/google_cloud_runtimeconfig { }; 2578 + google-cloud-runtimeconfig = callPackage ../development/python-modules/google-cloud-runtimeconfig { }; 2579 2579 2580 - google_cloud_secret_manager = callPackage ../development/python-modules/google_cloud_secret_manager { }; 2580 + google-cloud-secret-manager = callPackage ../development/python-modules/google-cloud-secret-manager { }; 2581 2581 2582 - google_cloud_securitycenter = callPackage ../development/python-modules/google_cloud_securitycenter { }; 2582 + google-cloud-securitycenter = callPackage ../development/python-modules/google-cloud-securitycenter { }; 2583 2583 2584 - google_cloud_spanner = callPackage ../development/python-modules/google_cloud_spanner { }; 2584 + google-cloud-spanner = callPackage ../development/python-modules/google-cloud-spanner { }; 2585 2585 2586 - google_cloud_speech = callPackage ../development/python-modules/google_cloud_speech { }; 2586 + google-cloud-speech = callPackage ../development/python-modules/google-cloud-speech { }; 2587 2587 2588 - google_cloud_storage = callPackage ../development/python-modules/google_cloud_storage { }; 2588 + google-cloud-storage = callPackage ../development/python-modules/google-cloud-storage { }; 2589 2589 2590 - google_cloud_tasks = callPackage ../development/python-modules/google_cloud_tasks { }; 2590 + google-cloud-tasks = callPackage ../development/python-modules/google-cloud-tasks { }; 2591 2591 2592 - google_cloud_testutils = callPackage ../development/python-modules/google_cloud_testutils { }; 2592 + google-cloud-testutils = callPackage ../development/python-modules/google-cloud-testutils { }; 2593 2593 2594 - google_cloud_texttospeech = callPackage ../development/python-modules/google_cloud_texttospeech { }; 2594 + google-cloud-texttospeech = callPackage ../development/python-modules/google-cloud-texttospeech { }; 2595 2595 2596 - google_cloud_trace = callPackage ../development/python-modules/google_cloud_trace { }; 2596 + google-cloud-trace = callPackage ../development/python-modules/google-cloud-trace { }; 2597 2597 2598 - google_cloud_translate = callPackage ../development/python-modules/google_cloud_translate { }; 2598 + google-cloud-translate = callPackage ../development/python-modules/google-cloud-translate { }; 2599 2599 2600 - google_cloud_videointelligence = callPackage ../development/python-modules/google_cloud_videointelligence { }; 2600 + google-cloud-videointelligence = callPackage ../development/python-modules/google-cloud-videointelligence { }; 2601 2601 2602 - google_cloud_vision = callPackage ../development/python-modules/google_cloud_vision { }; 2602 + google-cloud-vision = callPackage ../development/python-modules/google-cloud-vision { }; 2603 2603 2604 - google_cloud_websecurityscanner = callPackage ../development/python-modules/google_cloud_websecurityscanner { }; 2604 + google-cloud-websecurityscanner = callPackage ../development/python-modules/google-cloud-websecurityscanner { }; 2605 2605 2606 2606 google-compute-engine = callPackage ../tools/virtualization/google-compute-engine { }; 2607 2607 2608 - google_crc32c = callPackage ../development/python-modules/google_crc32c { 2608 + google-crc32c = callPackage ../development/python-modules/google-crc32c { 2609 2609 inherit (pkgs) crc32c; 2610 2610 }; 2611 2611 ··· 2621 2621 2622 2622 google-pasta = callPackage ../development/python-modules/google-pasta { }; 2623 2623 2624 - google_resumable_media = callPackage ../development/python-modules/google_resumable_media { }; 2624 + google-resumable-media = callPackage ../development/python-modules/google-resumable-media { }; 2625 2625 2626 2626 googletrans = callPackage ../development/python-modules/googletrans { }; 2627 2627