mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: python-beautifulsoup4: Update to 4.11.1.
* gnu/packages/python-xyz.scm (python-beautifulsoup4): Update to 4.11.1. [arguments]: Override check phase. [native-inputs]: Add PYTHON-PYTEST.
This commit is contained in:
parent
8eeadc8cb8
commit
8b1f117187
1 changed files with 10 additions and 2 deletions
|
@ -9386,15 +9386,23 @@ (define-public python-notify2
|
||||||
(define-public python-beautifulsoup4
|
(define-public python-beautifulsoup4
|
||||||
(package
|
(package
|
||||||
(name "python-beautifulsoup4")
|
(name "python-beautifulsoup4")
|
||||||
(version "4.10.0")
|
(version "4.11.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "beautifulsoup4" version))
|
(uri (pypi-uri "beautifulsoup4" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"14c8z4gh9bi38agx9ls8ym5rscc02pc6f6hmliaqk08xa8yd4fn2"))))
|
"14v68cpfzckfz63n9hnbsm271jvzvxscyijz83mhha7gcmdsb6md"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases (modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "pytest" "-vv")))))))
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-soupsieve python-html5lib python-lxml))
|
(list python-soupsieve python-html5lib python-lxml))
|
||||||
(home-page
|
(home-page
|
||||||
|
|
Loading…
Reference in a new issue