gnu: python-hyperlink: Update to 21.0.0.
* gnu/packages/python-web.scm (python-hyperlink): Update to 21.0.0. [build-system]: Change to PYPROJECT-BUILD-SYSTEM. [arguments]: New field. [native-inputs]: Add PYTHON-PYTEST.
This commit is contained in:
parent
90a3a0b588
commit
767b8586be
1 changed files with 12 additions and 3 deletions
|
@ -5311,15 +5311,24 @@ ecosystem.")
|
||||||
(define-public python-hyperlink
|
(define-public python-hyperlink
|
||||||
(package
|
(package
|
||||||
(name "python-hyperlink")
|
(name "python-hyperlink")
|
||||||
(version "19.0.0")
|
(version "21.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "hyperlink" version))
|
(uri (pypi-uri "hyperlink" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0m2nhi0j8wmgfscf974wd5v1xfq8mah286hil6npy1ys0m3y7222"))))
|
"0sx50lkivsfjxx9zr4yh7l9gll2l9kvl0v0w8w4wk2x5v9bzjyj2"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'pretend-to-be-CI
|
||||||
|
(lambda _
|
||||||
|
;; Pretend to be a CI system to skip flaky tests.
|
||||||
|
(setenv "CI" "true"))))))
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-idna))
|
(list python-idna))
|
||||||
(home-page "https://github.com/python-hyper/hyperlink")
|
(home-page "https://github.com/python-hyper/hyperlink")
|
||||||
|
|
Reference in a new issue