From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 03/11] gnu: Add python-kitchen. Date: Sun, 11 Dec 2016 17:44:02 -0500 Message-ID: <20161211224402.GD9474@jasmine> References: <20161211181237.24485-1-ng0@libertad.pw> <20161211181237.24485-4-ng0@libertad.pw> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51053) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cGCqm-0004X4-E7 for guix-devel@gnu.org; Sun, 11 Dec 2016 17:44:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cGCqh-00079L-SK for guix-devel@gnu.org; Sun, 11 Dec 2016 17:44:08 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:33259) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cGCqh-000799-Od for guix-devel@gnu.org; Sun, 11 Dec 2016 17:44:03 -0500 Content-Disposition: inline In-Reply-To: <20161211181237.24485-4-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: ng0 Cc: guix-devel@gnu.org On Sun, Dec 11, 2016 at 06:12:29PM +0000, ng0 wrote: > * gnu/packages/python.scm (python-kitchen): New variable. > +;; The source on github and pypi is newer than on fedorahosted. is being retired, and we'll need to update our packages accordingly. https://communityblog.fedoraproject.org/fedorahosted-sunset-2017-02-28/ > + (version "1.2.4") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "https://github.com/fedora-infra/" > + "kitchen/archive/" version ".tar.gz")) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 > + "1ybx8nccbh6j1v6xj60j8dkbwnhlj0i1hizfrxzcdvrm9wn6a8wa")))) > + (build-system python-build-system) > + (propagated-inputs > + `(("python-chardet" ,python-chardet))) > + (home-page "https://fedorahosted.org/kitchen") > + (synopsis "Python API for snippets") > + (description > + "@code{kitchen} module provides a python API for all sorts > +of little useful snippets of code that everybody ends up > +writing for their projects but never seem big enough to build > +an independent release. Use kitchen and stop cutting and > +pasting that code over and over.") > + (license (list license:lgpl2.1 > + ;; subprocess.py, test_subprocess.py, > + ;; kitchen/pycompat25/defaultdict.py: > + license:psfl)))) I think it's lgpl2.1+, based on the handful of source file headers that I checked.