From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 18/31] gnu: Add python-fixtures. Date: Fri, 5 Sep 2014 11:18:24 -0400 Message-ID: <1409930317-13220-18-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]:32957) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvIA-0001Ii-Qi for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XPvI4-0003fU-Vc for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:14 -0400 Received: from na3sys009aog136.obsmtp.com ([74.125.149.85]:43141) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvI4-0003f3-Ok for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:08 -0400 Received: by mail-yh0-f41.google.com with SMTP id 29so7512940yhl.14 for ; Fri, 05 Sep 2014 08:19:07 -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-fixtures, python2-fixtures): New variables. --- gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index e48444d..76899d6 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1268,6 +1268,34 @@ protocol.") (define-public python2-subunit (package-with-python2 python-subunit)) +(define-public python-fixtures + (package + (name "python-fixtures") + (version "0.3.16") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/f/fixtures/fixtures-" + version ".tar.gz")) + (sha256 + (base32 + "0x9r2gwilcig5g54k60bxzg96zabizq1855lrprlb4zckalp9asc")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools))) + (arguments + '(#:tests? #f)) ; no setup.py test command + (home-page "https://launchpad.net/python-fixtures") + (synopsis "Python test fixture library") + (description + "Fixtures provides a way to create reusable state, useful when writing +Python tests.") + (license (list bsd-3 asl2.0)))) + +(define-public python2-fixtures + (package-with-python2 python-fixtures)) + (define-public behave (package (name "behave") -- 2.0.1