guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/08: gnu: python-google-api-client: Update to 1.12.8.


From: guix-commits
Subject: 08/08: gnu: python-google-api-client: Update to 1.12.8.
Date: Mon, 20 Mar 2023 12:34:03 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit f80215c7c4ae5ea0c316f4766e6c05ae4218ede3
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Mar 20 11:23:26 2023 +0200

    gnu: python-google-api-client: Update to 1.12.8.
    
    * gnu/packages/python-web.scm (python-google-api-client): Update to
    1.12.8.
    [arguments]: Remove custom phase to adjust setup.py.
    [native-inputs]: Remove python-oauth2client, python-uritemplate. Move
    python-httplib2, python-six ...
    [propagated-inputs]: ... here. Add python-google-api-core-1,
    python-google-auth-1, python-google-auth-httplib2, python-uritemplate-3.
---
 gnu/packages/python-web.scm | 24 ++++++++++--------------
 1 file changed, 10 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 569332d738..072d160c26 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4832,28 +4832,24 @@ Google search engine.  Its module is called 
@code{googlesearch}.")
 (define-public python-google-api-client
   (package
     (name "python-google-api-client")
-    (version "1.6.7")
+    (version "1.12.8")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "google-api-python-client" version))
        (sha256
         (base32
-         "1wpbbbxfpy9mwxdy3kn352cb590ladv574j1aa2l4grjdqw3ln05"))))
+         "1fq89wifa9ymby655is246w5d54ixybffj5vz7lwzhpf8926ifgk"))))
     (build-system python-build-system)
     (arguments
-     `(#:tests? #f ; tests require internet access
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'fix-setup-py
-           (lambda _
-             (substitute* "setup.py"
-               (("googleapiclient/discovery_cache")
-                "googleapiclient.discovery_cache"))
-             #t)))))
-    (native-inputs
-     (list python-httplib2 python-six python-oauth2client
-           python-uritemplate))
+     `(#:tests? #f))    ; tests require internet access
+    (propagated-inputs
+     (list python-google-api-core-1
+           python-google-auth-1
+           python-google-auth-httplib2
+           python-httplib2
+           python-six
+           python-uritemplate-3))
     (home-page "https://github.com/google/google-api-python-client";)
     (synopsis "Core Python library for accessing Google APIs")
     (description "Python client library for Google's discovery based APIs")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]