1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-24 18:16:21 +03:00

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
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
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
];