From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 05/12] gnu: Add python-mccabe 0.2.1 Date: Mon, 12 Oct 2015 23:41:01 +0200 Message-ID: <1444686068-7668-6-git-send-email-tipecaml@gmail.com> References: <1444686068-7668-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54187) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlkqS-0003b5-PZ for guix-devel@gnu.org; Mon, 12 Oct 2015 17:41:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZlkqS-00070N-3G for guix-devel@gnu.org; Mon, 12 Oct 2015 17:41:24 -0400 Received: from mail-wi0-x232.google.com ([2a00:1450:400c:c05::232]:33991) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlkqR-0006zt-Tn for guix-devel@gnu.org; Mon, 12 Oct 2015 17:41:24 -0400 Received: by wicgb1 with SMTP id gb1so65630245wic.1 for ; Mon, 12 Oct 2015 14:41:23 -0700 (PDT) In-Reply-To: <1444686068-7668-1-git-send-email-tipecaml@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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/python.scm (python-mccabe-0.2.1, python2-mccabe-0.2.1): New variables. --- gnu/packages/python.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 44e3e6b..e8d8a02 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4834,6 +4834,20 @@ complexity of Python source code.") (define-public python2-mccabe (package-with-python2 python-mccabe)) +(define-public python-mccabe-0.2.1 + (package (inherit python-mccabe) + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "mccabe" version)) + (sha256 + (base32 + "0fi4a81kr5bcv5p4xgibqr595hyj5dafkqgsmfk96mfy8w71fajs")))))) + +(define-public python2-mccabe-0.2.1 + (package-with-python2 python-mccabe-0.2.1)) + ;; Flake8 2.4.1 requires an older version of pep8. ;; This should be removed ASAP. (define-public python-pep8-1.5.7 -- 2.1.4