[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 14/23] gnu: Add python-werkzeug.
From: |
Leo Famulari |
Subject: |
[PATCH 14/23] gnu: Add python-werkzeug. |
Date: |
Tue, 24 Nov 2015 16:02:14 -0500 |
* gnu/packages/python.scm (python-werkzeug, python2-werkzeug): New
variables.
---
gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e0b00ba..3758a48 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6265,3 +6265,31 @@ timestamps.")
(define-public python2-pyrfc3339
(package-with-python2 python-pyrfc3339))
+
+(define-public python-werkzeug
+ (package
+ (name "python-werkzeug")
+ (version "0.11.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
"https://pypi.python.org/packages/source/W/Werkzeug"
+ "/Werkzeug-" version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1gzwn1lkl90f3l1nzzxr7vjhm21qk8f837i8rvny5a209fcrhkzb"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-pytest" ,python-pytest)))
+ (home-page "http://werkzeug.pocoo.org/")
+ (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
+handle entity tags, cache control headers, HTTP dates, cookie handling, file
+uploads, a powerful URL routing system and a bunch of community-contributed
+addon modules.")
+ (license x11)))
+
+(define-public python2-werkzeug
+ (package-with-python2 python-werkzeug))
--
2.6.2
- [PATCH 05/23] gnu: Add python-zope-testrunner., (continued)
- [PATCH 05/23] gnu: Add python-zope-testrunner., Leo Famulari, 2015/11/24
- [PATCH 11/23] gnu: Add python-zope-security., Leo Famulari, 2015/11/24
- [PATCH 06/23] gnu: Add python-zope-i18nmessageid., Leo Famulari, 2015/11/24
- [PATCH 18/23] WIP: Add python-configargparse., Leo Famulari, 2015/11/24
- [PATCH 17/23] gnu: Add python2-pythondialog., Leo Famulari, 2015/11/24
- [PATCH 13/23] gnu: Add python-pyrfc3339., Leo Famulari, 2015/11/24
- [PATCH 02/23] gnu: Add python-zope-interface., Leo Famulari, 2015/11/24
- [PATCH 07/23] gnu: Add python-zope-schema., Leo Famulari, 2015/11/24
- [PATCH 12/23] gnu: Add python-zope-component., Leo Famulari, 2015/11/24
- [PATCH 03/23] gnu: Add python-zope-exceptions., Leo Famulari, 2015/11/24
- [PATCH 14/23] gnu: Add python-werkzeug.,
Leo Famulari <=
- [PATCH 16/23] gnu: Add dialog., Leo Famulari, 2015/11/24
- [PATCH 15/23] gnu: Add python-configobj., Leo Famulari, 2015/11/24
- [PATCH 19/23] gnu: Add python-ndg-httpsclient., Leo Famulari, 2015/11/24
- [PATCH 20/23] gnu: python-parsedatetime: Update to 1.5., Leo Famulari, 2015/11/24
- [PATCH 22/23] gnu: Add acme., Leo Famulari, 2015/11/24
- [PATCH 21/23] gnu: Add python2-parsedatetime., Leo Famulari, 2015/11/24
- [PATCH 23/23] WIP: Add lets-encrypt., Leo Famulari, 2015/11/24