From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 27/31] gnu: Add python-markupsafe. Date: Fri, 5 Sep 2014 11:18:33 -0400 Message-ID: <1409930317-13220-27-git-send-email-dthompson2@worcester.edu> References: <1409930317-13220-1-git-send-email-dthompson2@worcester.edu> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33187) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvIO-0001kO-4X for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XPvIH-0003no-GH for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:28 -0400 Received: from na3sys009aog132.obsmtp.com ([74.125.149.250]:49033) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvIH-0003nX-8r for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:21 -0400 Received: by mail-yk0-f176.google.com with SMTP id 19so7051858ykq.21 for ; Fri, 05 Sep 2014 08:19:20 -0700 (PDT) In-Reply-To: <1409930317-13220-1-git-send-email-dthompson2@worcester.edu> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * 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