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 @@ users, gradebooks, and more.")
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ; There are no tests.
|
`(#:tests? #f)) ; There are no tests.
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-beautifulsoup4))
|
||||||
(home-page "https://breakingcode.wordpress.com/")
|
(home-page "https://breakingcode.wordpress.com/")
|
||||||
(synopsis "Python bindings to the Google search engine")
|
(synopsis "Python bindings to the Google search engine")
|
||||||
(description "This package provides Python bindings for using the
|
(description "This package provides Python bindings for using the
|
||||||
|
@ -6538,6 +6540,53 @@ through the network, it only deals with the implementation details of the
|
||||||
SOCKS protocols. It can be paired with any I/O library.")
|
SOCKS protocols. It can be paired with any I/O library.")
|
||||||
(license license:expat)))
|
(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
|
(define-public python-azure-nspkg
|
||||||
(package
|
(package
|
||||||
(name "python-azure-nspkg")
|
(name "python-azure-nspkg")
|
||||||
|
|
Reference in a new issue