From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 24/31] gnu: Add python-itsdangerous. Date: Fri, 5 Sep 2014 11:18:30 -0400 Message-ID: <1409930317-13220-24-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]:33106) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvIJ-0001bA-Mj for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XPvIC-0003jo-QY for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:23 -0400 Received: from na3sys009aog107.obsmtp.com ([74.125.149.197]:46491) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvIC-0003jW-JY for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:16 -0400 Received: by mail-yh0-f42.google.com with SMTP id z6so687147yhz.15 for ; Fri, 05 Sep 2014 08:19:15 -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-itsdangerous, python2-itsdangerous): 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 6c6fdb5..aa03e83 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1678,3 +1678,29 @@ OAuth request-signing logic.") (append (package-inputs base) `(("python2-unittest2" ,python2-unittest2))))))) +(define-public python-itsdangerous + (package + (name "python-itsdangerous") + (version "0.24") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/i/itsdangerous/itsdangerous-" + version ".tar.gz")) + (sha256 + (base32 + "06856q6x675ly542ig0plbqcyab6ksfzijlyf1hzhgg3sgwgrcyb")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools))) + (home-page "http://github.com/mitsuhiko/itsdangerous") + (synopsis "Python library for passing data to/from untrusted environments") + (description + "Itsdangerous provides various helpers to pass trusted data to untrusted +environments and back.") + (license bsd-3))) + +(define-public python2-itsdangerous + (package-with-python2 python-itsdangerous)) + -- 2.0.1