diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-06 15:14:26 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-06 17:56:58 +0100 |
| commit | 657f8e490cc84fde05f484d482197aefe359f802 (patch) | |
| tree | c8bd4555779d9fd55f157027f88e2ce5965a0ce4 /gnu/packages | |
| parent | 4dce53f2d7d4eb4255febf009591c6043eea450c (diff) | |
gnu: python-google: Switch to pyproject.
* gnu/packages/python-web.scm (python-google):
[source, description, arguments]: Improve style.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools-next.
Change-Id: Ibdf9cd90e052dabfe644da99566f3973c865f12d
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/python-web.scm | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index f53f09733e9..5ff599b6b76 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -7453,21 +7453,21 @@ users, gradebooks, and more.") (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. - (propagated-inputs - (list python-beautifulsoup4)) + (source + (origin + (method url-fetch) + (uri (pypi-uri "google" version)) + (sha256 + (base32 "1gncv3l11za0mpxvmpaf5n5j3jzp282rz62yml4ha4z55q930d8l")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;There are no tests. + (native-inputs (list python-setuptools-next)) + (propagated-inputs (list python-beautifulsoup4)) (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}.") + (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 |
