[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 27/31] gnu: Add python-markupsafe.
From: |
David Thompson |
Subject: |
[PATCH 27/31] gnu: Add python-markupsafe. |
Date: |
Fri, 5 Sep 2014 11:18:33 -0400 |
* gnu/packages/python.scm (python-markupsafe, python2-markupsafe): New
variables.
---
gnu/packages/python.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 3638382..e2b3fa9 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1760,3 +1760,29 @@ environments and back.")
(define-public python2-pip
(package-with-python2 python-pip))
+(define-public python-markupsafe
+ (package
+ (name "python-markupsafe")
+ (version "0.23")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1hvip33wva3fnmvfp9x5klqri7hpl1hkgqmjbss18nmrb7zimv54"))))
+ (build-system python-build-system)
+ (inputs
+ `(("python-setuptools" ,python-setuptools)))
+ (home-page "http://github.com/mitsuhiko/markupsafe")
+ (synopsis "XML/HTML/XHTML markup safe string implementation for Python")
+ (description
+ "Markupsafe provides an XML/HTML/XHTML markup safe string implementation
+for Python.")
+ (license bsd-3)))
+
+(define-public python2-markupsafe
+ (package-with-python2 python-markupsafe))
+
--
2.0.1
- [PATCH 25/31] gnu: Add python-virtualenv., (continued)
- [PATCH 25/31] gnu: Add python-virtualenv., David Thompson, 2014/09/05
- [PATCH 26/31] gnu: Add python-pip., David Thompson, 2014/09/05
- [PATCH 12/31] gnu: Add python-pytest., David Thompson, 2014/09/05
- [PATCH 28/31] gnu: Add python-jinja2., David Thompson, 2014/09/05
- [PATCH 27/31] gnu: Add python-markupsafe.,
David Thompson <=
- [PATCH 29/31] gnu: Add python-docutils., David Thompson, 2014/09/05
- [PATCH 20/31] gnu: Add python-discover., David Thompson, 2014/09/05
- [PATCH 30/31] gnu: Add python-pygments., David Thompson, 2014/09/05
- [PATCH 31/31] gnu: Add python-sphinx., David Thompson, 2014/09/05
- Re: [PATCH 01/31] gnu: Add python-exif-read., Ludovic Courtès, 2014/09/05