mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 21:19:18 -05:00
gnu: python-google: Add missing input.
* gnu/packages/python-web.scm (python-google)[propagated-inputs]: Add python-beautifulsoup4.
This commit is contained in:
parent
62a4ed258c
commit
1f50f11aef
1 changed files with 49 additions and 0 deletions
|
@ -4494,6 +4494,8 @@ (define-public python-google
|
|||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ; There are no tests.
|
||||
(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
|
||||
|
@ -6538,6 +6540,53 @@ (define-public python-socksio
|
|||
SOCKS protocols. It can be paired with any I/O library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-msrest
|
||||
(package
|
||||
(name "python-msrest")
|
||||
(version "0.6.21")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "msrest" version))
|
||||
(sha256
|
||||
(base32 "1n389m3hcsyjskzimq4j71nyw9pjkrp0n5wg1q2c4bfwpv3inrkj"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "pytest"
|
||||
"-k"
|
||||
;; These attempt to connect to bing.com.
|
||||
(string-append
|
||||
"not test_basic_aiohttp"
|
||||
" and not test_basic_async_requests"
|
||||
" and not test_conf_async_requests"
|
||||
" and not test_conf_async_trio_requests"
|
||||
" and not test_basic_aiohttp"
|
||||
" and not test_basic_async_requests"
|
||||
" and not test_conf_async_requests"
|
||||
" and not test_conf_async_trio_requests"))))))))
|
||||
(propagated-inputs
|
||||
(list python-aiohttp
|
||||
python-certifi
|
||||
python-isodate
|
||||
python-requests
|
||||
python-requests-oauthlib))
|
||||
(native-inputs
|
||||
(list python-httpretty
|
||||
python-pytest
|
||||
python-pytest-aiohttp
|
||||
python-pytest-asyncio
|
||||
python-pytest-trio))
|
||||
(home-page "https://github.com/Azure/msrest-for-python")
|
||||
(synopsis "AutoRest swagger generator Python client runtime.")
|
||||
(description "This package provides the runtime library @code{msrest} for
|
||||
AutoRest-generated Python clients.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-azure-nspkg
|
||||
(package
|
||||
(name "python-azure-nspkg")
|
||||
|
|
Loading…
Reference in a new issue