From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 4/5] gnu: Add python-debtcollector. Date: Wed, 9 Sep 2015 01:34:23 +0200 Message-ID: <1441755264-6790-4-git-send-email-tipecaml@gmail.com> References: <1441755264-6790-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59207) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZSPM-0004Th-N4 for guix-devel@gnu.org; Tue, 08 Sep 2015 19:34:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZZSPL-0002C2-JD for guix-devel@gnu.org; Tue, 08 Sep 2015 19:34:36 -0400 Received: from mail-wi0-x229.google.com ([2a00:1450:400c:c05::229]:33545) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZSPL-0002Bd-BH for guix-devel@gnu.org; Tue, 08 Sep 2015 19:34:35 -0400 Received: by wiclk2 with SMTP id lk2so137599659wic.0 for ; Tue, 08 Sep 2015 16:34:34 -0700 (PDT) In-Reply-To: <1441755264-6790-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/openstack.scm (python-debtcollector, python2-debtcollector): New variables. --- gnu/packages/openstack.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index 1ed60fa..b73e0d9 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -25,6 +25,40 @@ #:select (asl2.0)) #:use-module (guix packages)) +(define-public python-debtcollector + (package + (name "python-debtcollector") + (version "0.5.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/d/debtcollector/" + "debtcollector-" version ".tar.gz")) + (sha256 + (base32 + "0amlcg5f98lk2mfzdg44slh1nsi2y4ds123g5d57376fjk2b3njd")))) + (build-system python-build-system) + (propagated-inputs + `(("python-six" ,python-six) + ("python-wrapt" ,python-wrapt))) + (inputs + `(("python-babel" ,python-babel) + ("python-pbr" ,python-pbr) + ("python-setuptools" ,python-setuptools) + ;; Tests. + ("python-oslotest" ,python-oslotest))) + (home-page "http://www.openstack.org/") + (synopsis + "Python library aimed at discovering the technical debt of a project") + (description + "A collection of Python deprecation patterns and strategies that help you + collect your technical debt in a non-destructive manner.") + (license asl2.0))) + +(define-public python2-debtcollector + (package-with-python2 python-debtcollector)) + (define-public python-mox3 (package (name "python-mox3") -- 2.1.4