[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/12: gnu: python-werkzeug: Update to 0.14.1.
From: |
guix-commits |
Subject: |
05/12: gnu: python-werkzeug: Update to 0.14.1. |
Date: |
Sun, 27 Jan 2019 05:49:41 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit c5e110ce95949b128a9b7cbc0b79ac7f616b400d
Author: Efraim Flashner <address@hidden>
Date: Sun Jan 27 11:13:25 2019 +0200
gnu: python-werkzeug: Update to 0.14.1.
* gnu/packages/python-web.scm (python-werkzeug): Update to 0.14.1.
[arguments]: Run tests after 'install phase. Use custom 'check phase.
[propagated-inputs]: Add python-requests.
[home-page]: Update to new home-page.
---
gnu/packages/python-web.scm | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index cee4973..9522abb 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2603,18 +2603,28 @@ List. Forked from and using the same API as the
publicsuffix package.")
(define-public python-werkzeug
(package
(name "python-werkzeug")
- (version "0.11.15")
+ (version "0.14.1")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "Werkzeug" version))
+ (uri (pypi-uri "werkzeug" version))
(sha256
(base32
- "1h5wycw8yj7q0grqsjnsqflmrlsdagvl2j4dsgdncci6mjc7fpa5"))))
+ "0z2m4snn1vc9518r2vzgdj1nc90kcgi60wijvd29yvcp85ypmzf3"))))
(build-system python-build-system)
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ (delete 'check)
+ (add-after 'install 'check
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (add-installed-pythonpath inputs outputs)
+ (invoke "python" "-m" "pytest"))))))
+ (propagated-inputs
+ `(("python-requests" ,python-requests)))
(native-inputs
`(("python-pytest" ,python-pytest)))
- (home-page "http://werkzeug.pocoo.org/")
+ (home-page "https://www.palletsprojects.org/p/werkzeug/")
(synopsis "Utilities for WSGI applications")
(description "One of the most advanced WSGI utility modules. It includes a
powerful debugger, full-featured request and response objects, HTTP utilities
to
- branch master updated (9f92038 -> 2066975), guix-commits, 2019/01/27
- 06/12: gnu: python-flask: Update to 1.0.2., guix-commits, 2019/01/27
- 07/12: gnu: python-flask: Run test suite., guix-commits, 2019/01/27
- 02/12: gnu: python-itsdangerous: Update to 1.1.0., guix-commits, 2019/01/27
- 05/12: gnu: python-werkzeug: Update to 0.14.1.,
guix-commits <=
- 08/12: gnu: python-tornado: Update to 5.1.1., guix-commits, 2019/01/27
- 10/12: gnu: python-urllib3: Update to 1.24.1., guix-commits, 2019/01/27
- 12/12: gnu: python-cryptography, python-cryptography-vectors: Update to 2.5., guix-commits, 2019/01/27
- 09/12: gnu: python-flaky: Update to 3.5.3., guix-commits, 2019/01/27
- 03/12: gnu: python-click: Update to 7.0., guix-commits, 2019/01/27
- 04/12: gnu: python-click: Enable tests., guix-commits, 2019/01/27
- 01/12: gnu: python-entrypoints: Update to 0.3., guix-commits, 2019/01/27
- 11/12: gnu: python-bcrypt: Update to 3.1.6., guix-commits, 2019/01/27