mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: python-requests: Propagate required inputs.
This is a follow-up to commit b5c2e72051
.
* gnu/packages/python-web.scm (python-requests)[propagated-inputs]: Add
PYTHON-CERTIFI, PYTHON-CHARDET, PYTHON-IDNA, and PYTHON-URLLIB3.
(python-urllib3)[native-inputs]: Remove (due to dependency cycle).
This commit is contained in:
parent
95dc93da85
commit
85ef07c4b2
1 changed files with 5 additions and 6 deletions
|
@ -1285,8 +1285,12 @@ (define-public python-requests
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"13jr0wkj9c2j8c0c8iaal9iivi0bpxghnsdn6lxcpnmc657q4ajh"))))
|
"13jr0wkj9c2j8c0c8iaal9iivi0bpxghnsdn6lxcpnmc657q4ajh"))))
|
||||||
;; TODO: unbundle urllib3 and chardet.
|
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-certifi" ,python-certifi)
|
||||||
|
("python-chardet" ,python-chardet)
|
||||||
|
("python-idna" ,python-idna)
|
||||||
|
("python-urllib3" ,python-urllib3)))
|
||||||
(arguments
|
(arguments
|
||||||
;; FIXME: Some tests require network access.
|
;; FIXME: Some tests require network access.
|
||||||
'(#:tests? #f))
|
'(#:tests? #f))
|
||||||
|
@ -1455,11 +1459,6 @@ (define-public python-urllib3
|
||||||
"08lwd9f3hqznyf32vnzwvp87pchx062nkbgyrf67rwlkgj0jk5fy"))))
|
"08lwd9f3hqznyf32vnzwvp87pchx062nkbgyrf67rwlkgj0jk5fy"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments `(#:tests? #f))
|
(arguments `(#:tests? #f))
|
||||||
(native-inputs
|
|
||||||
`(;; some packages for tests
|
|
||||||
("python-mock" ,python-mock)
|
|
||||||
("python-pytest" ,python-pytest)
|
|
||||||
("python-tornado" ,python-tornado)))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(;; These 5 inputs are used to build urrlib3[secure]
|
`(;; These 5 inputs are used to build urrlib3[secure]
|
||||||
("python-certifi" ,python-certifi)
|
("python-certifi" ,python-certifi)
|
||||||
|
|
Loading…
Reference in a new issue