From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46827) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1irBU1-0001K0-GT for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1irBU0-0008LB-4E for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:54585) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1irBU0-0008Kq-02 for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1irBU0-0005QK-0k for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:04 -0500 Subject: [bug#39128] [PATCH 06/12] gnu: Add python-gitlab. Resent-Message-ID: From: Julien Lepiller Date: Tue, 14 Jan 2020 02:57:33 +0100 Message-Id: <20200114015739.14432-6-julien@lepiller.eu> In-Reply-To: <20200114015739.14432-1-julien@lepiller.eu> References: <20200114025253.3a99b3c7@tachikoma.lepiller.eu> <20200114015739.14432-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39128@debbugs.gnu.org * gnu/packages/python-web.scm (python-gitlab): New variable. --- gnu/packages/python-web.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index f1a62d50a0..29bd79b178 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -3459,3 +3459,28 @@ and fairly speedy.") the source code of a project. It supports many translation file formats and is part of the Weblate translation platform.") (license license:gpl3+))) + +(define-public python-gitlab + (package + (name "python-gitlab") + (version "1.15.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python-gitlab" version)) + (sha256 + (base32 + "0zl6kz8v8cg1bcy2r78b2snb0lpw0b573gdx2x1ps0nhsh75l4j5")))) + (build-system python-build-system) + (propagated-inputs + `(("python-requests" ,python-requests) + ("python-six" ,python-six))) + (native-inputs + `(("python-httmock" ,python-httmock) + ("python-mock" ,python-mock))) + (home-page + "https://github.com/python-gitlab/python-gitlab") + (synopsis "Interact with GitLab API") + (description "This package provides an extended library for interacting +with GitLab instances through their API.") + (license license:lgpl3+))) -- 2.24.0