From ad7c7b5bf62440ee05ff4da908484721d75ca545 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Mon, 31 May 2021 09:21:45 +0200 Subject: gnu: Add python-google. * gnu/packages/python-web.scm (python-google): New variable. --- gnu/packages/python-web.scm | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index f20f1c1f55..81cd4daea2 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2013, 2014, 2015, 2016, 2020 Andreas Enge ;;; Copyright © 2016, 2017, 2019, 2020, 2021 Marius Bakke ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus -;;; Copyright © 2017 Roel Janssen +;;; Copyright © 2017, 2021 Roel Janssen ;;; Copyright © 2016, 2017, 2020 Julien Lepiller ;;; Copyright © 2016, 2017 Nikita ;;; Copyright © 2014, 2017, 2021 Eric Bavier @@ -4298,6 +4298,25 @@ name resolutions asynchronously.") for URL parsing and changing.") (license license:asl2.0))) +(define-public python-google + (package + (name "python-google") + (version "3.0.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "google" version)) + (sha256 + (base32 + "1gncv3l11za0mpxvmpaf5n5j3jzp282rz62yml4ha4z55q930d8l")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) ; There are no tests. + (home-page "https://breakingcode.wordpress.com/") + (synopsis "Python bindings to the Google search engine") + (description "This package provides Python bindings for using the +Google search engine. Its module is called @code{googlesearch}.") + (license license:bsd-3))) + (define-public python-google-api-client (package (name "python-google-api-client") -- cgit v1.2.3