guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: Add python-krb5.


From: guix-commits
Subject: 01/04: gnu: Add python-krb5.
Date: Mon, 15 Jan 2024 16:58:22 -0500 (EST)

sharlatan pushed a commit to branch master
in repository guix.

commit bba2fa646d6367a332288768d9ace01e00e61187
Author: Troy Figiel <troy@troyfigiel.com>
AuthorDate: Sat Jan 13 18:58:33 2024 +0100

    gnu: Add python-krb5.
    
    * gnu/packages/python-xyz.scm (python-krb5): New variable.
    
    Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
 gnu/packages/python-xyz.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 52895212ad..9c982126a2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19500,6 +19500,25 @@ and pluralizes English words, and transforms strings 
from CamelCase to
 underscored string.")
     (license license:expat)))
 
+(define-public python-krb5
+  (package
+    (name "python-krb5")
+    (version "0.5.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "krb5" version))
+       (sha256
+        (base32 "1jivws8dsscsmyqngbc71r4qw8qmn98pqmhylz01r5dd1ljfw9bi"))))
+    (build-system pyproject-build-system)
+    (inputs (list mit-krb5))
+    (native-inputs (list python-cython python-k5test python-pytest))
+    (home-page "https://github.com/jborean93/pykrb5";)
+    (synopsis "Kerberos API bindings for Python")
+    (description "This library provides Python functions that wraps the
+Kerberos 5 C API.")
+    (license license:expat)))
+
 (define-public python-pylev
   (package
     (name "python-pylev")



reply via email to

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