[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63612] [PATCH 4/6] gnu: python-werkzeug: Update to 2.2.3.
From: |
kiasoc5 |
Subject: |
[bug#63612] [PATCH 4/6] gnu: python-werkzeug: Update to 2.2.3. |
Date: |
Sat, 20 May 2023 12:44:10 -0400 |
* gnu/packages/python-web.scm (python-werkzeug): Update to 2.2.3.
[build-system]: Switch to pyproject-build-system.
[arguments]: Delete check phase. Use test flags. Skip another test.
[propagated-inputs]: Add python-markupsafe.
[native-inputs]: Add python-cryptography, python-ephemeral-port-reserve,
python-greenlet, and python-watchdog.
---
gnu/packages/python-web.scm | 29 +++++++++++++++--------------
1 file changed, 15 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 337c2b72c0..b675edab12 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4625,29 +4625,30 @@ (define-public python-publicsuffix2
(define-public python-werkzeug
(package
(name "python-werkzeug")
- (version "2.0.2")
+ (version "2.2.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "Werkzeug" version))
(sha256
(base32
- "16nvv9dh37ssf5pkny9yj2li0n6wyzsygh8a9i86r3gfipybcaxa"))))
- (build-system python-build-system)
+ "1zhaznfq2pc6czbg5gjg3pm92hq9mkip9wg6kn5kbnnl2yacq71f"))))
+ (build-system pyproject-build-system)
(arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? inputs outputs #:allow-other-keys)
- (when tests?
- (add-installed-pythonpath inputs outputs)
- (invoke "python" "-m" "pytest"
- ;; Test tries to use the network.
- "-k not test_reloader_sys_path")))))))
+ (list
+ #:test-flags
+ ;; Test tries to use the network.
+ '(list "-k" "not test_exclude_patterns and not test_reloader_sys_path")))
(propagated-inputs
- (list python-requests))
+ (list python-requests python-markupsafe))
(native-inputs
- (list python-pytest python-pytest-timeout python-pytest-xprocess))
+ (list python-cryptography
+ python-ephemeral-port-reserve
+ python-greenlet
+ python-pytest
+ python-pytest-timeout
+ python-pytest-xprocess
+ python-watchdog))
(home-page "https://palletsprojects.com/p/werkzeug/")
(synopsis "Utilities for WSGI applications")
(description "One of the most advanced WSGI utility modules. It includes a
--
2.40.1
- [bug#63612] [PATCH 0/6] Update searx and dependencies., kiasoc5, 2023/05/20
- [bug#63612] [PATCH 2/6] gnu: python-watchdog: Update to 3.0.0., kiasoc5, 2023/05/20
- [bug#63612] [PATCH 1/6] gnu: Add python-ephemeral-port-reserve., kiasoc5, 2023/05/20
- [bug#63612] [PATCH 4/6] gnu: python-werkzeug: Update to 2.2.3.,
kiasoc5 <=
- [bug#63612] [PATCH 3/6] gnu: python-jinja2: Update to 3.1.2., kiasoc5, 2023/05/20
- [bug#63612] [PATCH 6/6] gnu: searx: Update to 1.1.0., kiasoc5, 2023/05/20
- [bug#63612] [PATCH 5/6] gnu: python-flask: Update to 2.2.2., kiasoc5, 2023/05/20