From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pjotr Prins Subject: Re: [PATCH 3/4] gnu: Add python-paramunittest Date: Sun, 26 Mar 2017 15:12:49 +0000 Message-ID: <20170326151249.GC13943@monza> References: <20170326092335.3912-1-fredmanglis@gmail.com> <20170326092335.3912-3-fredmanglis@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34742) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cs9sb-0007Dm-Ay for guix-devel@gnu.org; Sun, 26 Mar 2017 11:14:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cs9sW-0000Vz-HT for guix-devel@gnu.org; Sun, 26 Mar 2017 11:14:53 -0400 Received: from mail.thebird.nl ([95.154.246.10]:34542) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cs9sW-0000Vc-B6 for guix-devel@gnu.org; Sun, 26 Mar 2017 11:14:48 -0400 Content-Disposition: inline In-Reply-To: <20170326092335.3912-3-fredmanglis@gmail.com> 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: Muriithi Frederick Muriuki Cc: guix-devel@gnu.org This package does not actually have an OSI approved license that I can tell. We should contact the authors. Pj. On Sun, Mar 26, 2017 at 12:23:34PM +0300, Muriithi Frederick Muriuki wrote: > * gnu/packages/python.scm (python-paramunittest): New variable. > --- > gnu/packages/python.scm | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index 7bda780..a219bb3 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -13932,3 +13932,26 @@ possible to write plugins to add your own checks.") > ,python2-backports-functools-lru-cache) > ("python2-configparser" ,python2-configparser) > ,@(package-propagated-inputs pylint)))))) > + > +(define-public python-paramunittest > + (package > + (name "python-paramunittest") > + (version "0.2") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "ParamUnittest" version)) > + (sha256 > + (base32 > + "0kp793hws5xv1wvycxq7jw2pwy36f35k39jg8hx5qikij5a0jid1")))) > + (build-system python-build-system) > + (home-page > + "https://github.com/rik0/ParamUnittest") > + (synopsis > + "Simple extension to have parametrized unit tests") > + (description > + "This package allows to create parametrized unit-tests that work with the standard > +unittest package. A parametrized test case is automatically converted to multiple test > +cases. Since they are TestCase subclasses, they work with other test suites that > +recognize TestCases.") > + (license license:bsd-3))) > -- > 2.10.2 >