From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 09/11] gnu: Add python-straight-plugin. Date: Wed, 14 Dec 2016 12:25:24 +0000 Message-ID: <20161214122526.4458-10-ng0@libertad.pw> References: <20161212151837.GA24973@jasmine> <20161214122526.4458-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49912) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cH8du-0006XV-WF for guix-devel@gnu.org; Wed, 14 Dec 2016 07:26:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cH8dt-0005fk-P0 for guix-devel@gnu.org; Wed, 14 Dec 2016 07:26:42 -0500 Received: from aibo.runbox.com ([91.220.196.211]:60816) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cH8dt-0005dI-Il for guix-devel@gnu.org; Wed, 14 Dec 2016 07:26:41 -0500 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cH8dq-0001H8-N4 for guix-devel@gnu.org; Wed, 14 Dec 2016 13:26:38 +0100 In-Reply-To: <20161214122526.4458-1-ng0@libertad.pw> 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" To: guix-devel@gnu.org * gnu/packages/python.scm (python-straight-plugin): New variable. --- gnu/packages/python.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index e7e10dc90..b1bfc4850 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6026,6 +6026,33 @@ term.js Javascript terminal emulator library.") ,python2-backport-ssl-match-hostname) ,@(package-propagated-inputs terminado)))))) +(define-public python-straight-plugin + (package + (name "python-straight-plugin") + (version "1.4.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/ironfroggy/" + "straight.plugin/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0yy7ymng4d2dgqg81dz48b176zarbk1il7ig1m1q8zl8l559n817")))) + (build-system python-build-system) + (home-page "https://github.com/ironfroggy/straight.plugin") + (synopsis "Simple namespaced plugin facility") + (description + "Straight Plugin provides a type of plugin you can create +from almost any existing Python modules, and an easy way for +outside developers to add functionality and customization to +your projects with their own plugins.") + (license license:expat))) + +(define-public python2-straight-plugin + (package-with-python2 python-straight-plugin)) + (define-public python-fonttools (package (name "python-fonttools") -- 2.11.0