diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-04-27 06:34:57 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-04-27 06:34:57 +0200 |
commit | e1ca41185242abacba48e78945361592096ca125 (patch) | |
tree | d5cd4b45c9085e816881aa45eee350ff425df725 /gnu/packages/python-web.scm | |
parent | bb385f247292d3162b27afa7ac48a1bf404c8e37 (diff) | |
download | guix-e1ca41185242abacba48e78945361592096ca125.tar.gz |
gnu: python-wsproto: Update to 1.2.0.
* gnu/packages/python-web.scm (python-wsproto): Update to 1.2.0. [build-system]: Use pyproject-build-system. [arguments]: Remove.
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index a466f69963..4de6dee44c 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -2131,21 +2131,14 @@ set out in RFC 7540 Section 5.3 (Stream Priority).") (define-public python-wsproto (package (name "python-wsproto") - (version "0.15.0") + (version "1.2.0") (source (origin (method url-fetch) (uri (pypi-uri "wsproto" version)) (sha256 - (base32 "17gsxlli4w8am1wwwl3k90hpdfa213ax40ycbbvb7hjx1v1rhiv1")))) - (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")))))) + (base32 "0rahm1j9danv1l6i6as80acwv16ycihxkhrvwjiqh9drxhk5ymmd")))) + (build-system pyproject-build-system) (native-inputs (list python-pytest)) (propagated-inputs |