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

This commit is contained in:
Sandro Jäckel
2021-01-06 10:46:48 +01:00
parent 692345a570
commit ac391fdc0b
57 changed files with 209 additions and 209 deletions

View File

@@ -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
];