me
/
guix
Archived
1
0
Fork 0

gnu: python-requests: Remove unnecessary input.

* gnu/packages/python-web.scm (python-requests)[propagated-inputs]: Remove
PYTHON-CHARDET.
(python2-requests)[propagated-inputs]: Add PYTHON2-CHARDET.
master
Marius Bakke 2022-01-23 18:15:46 +01:00
parent f0b4c042ff
commit 3f571aa4e4
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 5 additions and 2 deletions

View File

@ -2541,8 +2541,10 @@ APIs.")
"0qcsbi919d689xqlgyhw9zkppp1fs6k09wwffa3ri6d8smpwbmv8"))))
(build-system python-build-system)
(propagated-inputs
(list python-certifi python-chardet python-charset-normalizer
python-idna python-urllib3))
(list python-certifi
python-charset-normalizer
python-idna
python-urllib3))
(arguments
;; FIXME: Some tests require network access.
'(#:tests? #f))
@ -2561,6 +2563,7 @@ than Pythons urllib2 library.")
;; The python-charset-normalizer dependency is necessary on Python 3
;; only.
(propagated-inputs (modify-inputs (package-propagated-inputs base)
(append python2-chardet)
(delete "python-charset-normalizer"))))))
(define-public python-requests-unixsocket