[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
340/361: gnu: python-werkzeug: Update to 3.1.3.
From: |
guix-commits |
Subject: |
340/361: gnu: python-werkzeug: Update to 3.1.3. |
Date: |
Fri, 22 Nov 2024 06:01:11 -0500 (EST) |
andreas pushed a commit to branch python-team
in repository guix.
commit 37d0cb245738e86a1737ef765190ed9317fa1c96
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sat Nov 16 23:20:34 2024 +0000
gnu: python-werkzeug: Update to 3.1.3.
* gnu/packages/python-web.scm (python-werkzeug): Update to 3.1.3.
[build-system]: Swap to pyproject-build-system.
[arguments]<phases>: Use default 'check phase.
[propagated-inputs]: Add python-markupsafe.
[native-inputs]: Add python-flit-core, python-watchdog, and
python-ephemeral-port-reserve.
Change-Id: I97a971034993272b369803eb24f7c6f718da55af
---
gnu/packages/python-web.scm | 36 ++++++++++++++++++++----------------
1 file changed, 20 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a95420f341..d3ad0f8c0a 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5583,29 +5583,33 @@ List. Forked from and using the same API as the
publicsuffix package.")
(define-public python-werkzeug
(package
(name "python-werkzeug")
- (version "2.0.2")
+ (version "3.1.3")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "Werkzeug" version))
+ (uri (pypi-uri "werkzeug" version))
(sha256
(base32
- "16nvv9dh37ssf5pkny9yj2li0n6wyzsygh8a9i86r3gfipybcaxa"))))
- (build-system python-build-system)
+ "0ij7si3aa3ykac7k7fz481h4majqqwn2iqwhjxkji4y18plkqwk0"))))
+ (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")))))))
- (propagated-inputs
- (list python-requests))
+ (list
+ #:test-flags
+ ;; Test requiring networking setup.
+ #~(list "--ignore=tests/test_serving.py"
+ "--deselect=tests/test_debug.py::test_basic"
+ "--deselect=tests/test_exceptions.py::test_response_body"
+
"--deselect=tests/middleware/test_http_proxy.py::test_http_proxy")))
(native-inputs
- (list python-pytest python-pytest-timeout python-pytest-xprocess))
+ (list python-flit-core
+ python-pytest
+ python-watchdog
+ python-ephemeral-port-reserve
+ python-pytest-timeout
+ python-pytest-xprocess))
+ (propagated-inputs
+ (list python-markupsafe
+ python-requests))
(home-page "https://palletsprojects.com/p/werkzeug/")
(synopsis "Utilities for WSGI applications")
(description "One of the most advanced WSGI utility modules. It includes a
- 357/361: gnu: python-httpbin: Update to 0.10.2., (continued)
- 357/361: gnu: python-httpbin: Update to 0.10.2., guix-commits, 2024/11/22
- 268/361: gnu: python-yt: Remove relax-requirements phase., guix-commits, 2024/11/22
- 276/361: gnu: python-accupy: Adjust inputs., guix-commits, 2024/11/22
- 282/361: gnu: python-mutagen: Update to 1.47.0., guix-commits, 2024/11/22
- 284/361: gnu: beets: Update to 2.0.0., guix-commits, 2024/11/22
- 293/361: gnu: beets-bandcamp: Add maintenance note., guix-commits, 2024/11/22
- 303/361: gnu: python-ptyprocess: Update to 0.7.0., guix-commits, 2024/11/22
- 311/361: gnu: python-coverage: Update to 7.6.7., guix-commits, 2024/11/22
- 315/361: gnu: python-cffi: Update to 1.17.1., guix-commits, 2024/11/22
- 319/361: gnu: python-jedi: Update to 0.19.2., guix-commits, 2024/11/22
- 340/361: gnu: python-werkzeug: Update to 3.1.3.,
guix-commits <=
- 356/361: gnu: python-apispec-webframeworks: Update to 1.2.0., guix-commits, 2024/11/22
- 361/361: gnu: python-pydantic: Update to 1.10.19., guix-commits, 2024/11/22
- 355/361: gnu: Remove python-flask-jwt., guix-commits, 2024/11/22
- 266/361: gnu: python-nose-exclude: Adjust iputs., guix-commits, 2024/11/22
- 292/361: gnu: Add python-rich-tables., guix-commits, 2024/11/22
- 298/361: gnu: python-exceptiongroup: Move to python-build., guix-commits, 2024/11/22
- 306/361: gnu: python-pytest-timeout: Update to 2.3.1., guix-commits, 2024/11/22
- 309/361: gnu: python-filelock: Update to 3.16.1., guix-commits, 2024/11/22
- 308/361: gnu: python-pytest-mock: Update to 3.14.0., guix-commits, 2024/11/22
- 310/361: gnu: python-pytest-xdist: Update to 3.6.1., guix-commits, 2024/11/22