guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/04: gnu: Add python-gssapi.


From: guix-commits
Subject: 04/04: gnu: Add python-gssapi.
Date: Mon, 20 Jan 2020 07:51:29 -0500 (EST)

iyzsong pushed a commit to branch master
in repository guix.

commit a8ef4978f29c3fb069066430587f331f61432f21
Author: Lars-Dominik Braun <address@hidden>
AuthorDate: Mon Jan 13 08:46:52 2020 +0100

    gnu: Add python-gssapi.
    
    * gnu/packages/python-xyz.scm (python-gssapi): New variable.
    
    Signed-off-by: 宋文武 <address@hidden>
---
 gnu/packages/python-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8dfbc8c..617c3b4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17258,3 +17258,34 @@ environments, and running Python unit tests inside 
those environments.  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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]