summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/google-api-python-client
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-06 10:46:48 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-06 23:59:50 +0100
commitac391fdc0bad04e7c83c53eb2ef527c8bc9d16cb (patch)
tree4c3d2acf80ff6876cf447dc6c144c6fe8079986a /pkgs/development/python-modules/google-api-python-client
parent692345a57070f2a03b59ac66b62872717b3b2d99 (diff)
pythonPackages:google*: Noramlize names by replacing _ with -
Diffstat (limited to 'pkgs/development/python-modules/google-api-python-client')
-rw-r--r--pkgs/development/python-modules/google-api-python-client/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/google-api-python-client/default.nix b/pkgs/development/python-modules/google-api-python-client/default.nix
index b14276b0a1a2..2f6508c062f7 100644
--- a/pkgs/development/python-modules/google-api-python-client/default.nix
+++ b/pkgs/development/python-modules/google-api-python-client/default.nix
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi
-, google_auth, google-auth-httplib2, google_api_core
+, google-auth, google-auth-httplib2, google-api-core
, httplib2, six, uritemplate, oauth2client }:
buildPythonPackage rec {
@@ -15,7 +15,7 @@ buildPythonPackage rec {
doCheck = false;
propagatedBuildInputs = [
- google_auth google-auth-httplib2 google_api_core
+ google-auth google-auth-httplib2 google-api-core
httplib2 six uritemplate oauth2client
];