mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: parfive: Update to 2.2.0.
* gnu/packages/python-web.scm (parfive): Update to 2.2.0. [native-inputs]: Remove python-setuptools-scm; add python-setuptools-scm-next. Change-Id: I1236f5e4a79e68314ea288eb8361c4f0d2addec6
This commit is contained in:
parent
269e090f64
commit
22a9f2dad1
1 changed files with 27 additions and 22 deletions
|
@ -2341,32 +2341,37 @@ HTTP servers, RESTful APIs, and web services.")
|
||||||
(define-public parfive
|
(define-public parfive
|
||||||
(package
|
(package
|
||||||
(name "parfive")
|
(name "parfive")
|
||||||
(version "2.1.0")
|
(version "2.2.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "parfive" version))
|
(method url-fetch)
|
||||||
(sha256
|
(uri (pypi-uri "parfive" version))
|
||||||
(base32
|
(sha256
|
||||||
"13nw2y7wjzj6w049av6ff4d0zxgbhkrgck0xyh676c114hcv8v6d"))))
|
(base32 "16rf02jhjr9lij8s2gqmvs01vx8kiv9f2535dnnziqwqv14d21yy"))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
;; Disable tests requiring network access.
|
|
||||||
#:test-flags
|
#:test-flags
|
||||||
#~(list "-k" (string-append
|
;; Disable tests requiring network access.
|
||||||
"not test_ftp"
|
#~(list "-k" (string-join
|
||||||
" and not test_ftp_pasv_command"
|
(list "not test_ftp"
|
||||||
" and not test_ftp_http"))))
|
"test_ftp_pasv_command"
|
||||||
(propagated-inputs (list python-aiofiles python-aioftp python-aiohttp
|
"test_ftp_http")
|
||||||
python-tqdm))
|
" and not "))))
|
||||||
(native-inputs (list python-pytest
|
(native-inputs
|
||||||
python-pytest-asyncio
|
(list python-pytest
|
||||||
python-pytest-cov
|
python-pytest-asyncio
|
||||||
python-pytest-localserver
|
python-pytest-cov
|
||||||
python-pytest-socket
|
python-pytest-localserver
|
||||||
python-setuptools
|
python-pytest-socket
|
||||||
python-setuptools-scm
|
python-setuptools
|
||||||
python-wheel))
|
python-setuptools-scm-next
|
||||||
|
python-wheel))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-aiofiles
|
||||||
|
python-aioftp
|
||||||
|
python-aiohttp
|
||||||
|
python-tqdm))
|
||||||
(home-page "https://parfive.readthedocs.io/")
|
(home-page "https://parfive.readthedocs.io/")
|
||||||
(synopsis "HTTP and FTP parallel file downloader")
|
(synopsis "HTTP and FTP parallel file downloader")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue