From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54196) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iquSG-0005e6-JX for guix-patches@gnu.org; Mon, 13 Jan 2020 02:48:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iquSF-0008Rr-58 for guix-patches@gnu.org; Mon, 13 Jan 2020 02:48:08 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:52611) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iquSB-0008Iv-4Y for guix-patches@gnu.org; Mon, 13 Jan 2020 02:48:06 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iquSB-0008Ex-3X for guix-patches@gnu.org; Mon, 13 Jan 2020 02:48:03 -0500 Subject: [bug#39028] [PATCH 4/7] gnu: Add python-gssapi Resent-Message-ID: From: Lars-Dominik Braun Date: Mon, 13 Jan 2020 08:46:52 +0100 Message-Id: <20200113074655.11012-4-ldb@leibniz-psychology.org> In-Reply-To: <20200113074655.11012-1-ldb@leibniz-psychology.org> References: <20200113074655.11012-1-ldb@leibniz-psychology.org> 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: 39028@debbugs.gnu.org Cc: zimon.toutoune@gmail.com * gnu/packages/python-xyz.scm (python-gssapi): New variable --- gnu/packages/python-xyz.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 846113aceb..e12f15fac8 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17210,3 +17210,33 @@ It is based on the file of the same name found alongside the MIT Kerberos 5 unit tests.") (license license:isc))) +(define-public python-gssapi + (package + (name "python-gssapi") + (version "1.6.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "gssapi" version)) + (sha256 + (base32 + "1gymg4asvwrz7y13qpwp2s5g8qwq179d72gkj09q6bfcgs82l5wr")))) + (build-system python-build-system) + (propagated-inputs + `(("python-decorator" ,python-decorator) + ("python-six" ,python-six))) + (inputs + `(("mit-krb5" ,mit-krb5))) + ;; for tests + (native-inputs + `(("python-shouldbe" ,python-shouldbe) + ("python-parameterized" ,python-parameterized) + ("python-k5test" ,python-k5test) + ("python-nose" ,python-nose))) + (home-page + "https://github.com/pythongssapi/python-gssapi") + (synopsis "Python GSSAPI Wrapper") + (description "Python-GSSAPI provides both low-level and high level wrappers +around the GSSAPI C libraries. While it focuses on the Kerberos mechanism, it +should also be useable with other GSSAPI mechanisms.") + (license license:isc))) -- 2.20.1