diff options
author | Vinicius Monego <monego@posteo.net> | 2025-07-01 07:25:11 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2025-07-02 18:38:05 -0300 |
commit | 9466dea10d7cc009afa164d0a2a5d04395b3129f (patch) | |
tree | f3b034ac0b9d840065852f926e000b7c1dce38e0 /gnu/packages/python-web.scm | |
parent | adb09ed12eb7a933b0b20c289c038b6f31b2dbe6 (diff) |
gnu: python-priority: Update to 2.0.0.
* gnu/packages/python-web.scm (python-priority): Update to 2.0.0.
[build-system]: Use pyproject-build-system.
[arguments]<#:phases>: Do not override the 'check' phase. Enable all
tests.
[native-inputs]: Remove python-hypothesis, python-pytest-cov,
python-pytest-xdist. Add python-setuptools, python-wheel.
Change-Id: Idfeeccdec3e31b600d7d69020afc55a5a66a3dee
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index c4129b8b92..e51c097eeb 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -3895,26 +3895,16 @@ teams extension for python-openid.") (define-public python-priority (package (name "python-priority") - (version "1.3.0") + (version "2.0.0") (source (origin (method url-fetch) (uri (pypi-uri "priority" version)) (sha256 - (base32 "1gpzn9k9zgks0iw5wdmad9b4dry8haiz2sbp6gycpjkzdld9dhbb")))) - (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key inputs outputs #:allow-other-keys) - (add-installed-pythonpath inputs outputs) - (invoke "pytest" "-vv" "test" "-k" - ;; This test exceeded the Hypothesis deadline. - "not test_period_of_repetition")))))) + (base32 "1h0qpa949bxx7za95v1apwnngkrngi695cwx8wchn3cd3d7xarf9")))) + (build-system pyproject-build-system) (native-inputs - (list python-hypothesis python-pytest python-pytest-cov - python-pytest-xdist)) + (list python-pytest python-setuptools python-wheel)) (home-page "https://python-hyper.org/projects/priority/en/latest/") (synopsis "Pure-Python implementation of the HTTP/2 priority tree") (description |