guix-patches
[Top][All Lists]
Advanced

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

[bug#39028] [PATCH 3/7] gnu: Add python-k5test


From: Lars-Dominik Braun
Subject: [bug#39028] [PATCH 3/7] gnu: Add python-k5test
Date: Mon, 13 Jan 2020 08:46:51 +0100

* gnu/packages/python-xyz.scm (python-k5test): New variable
---
 gnu/packages/python-xyz.scm | 39 +++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e9d9c372e7..846113aceb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -112,6 +112,7 @@
   #:use-module (gnu packages icu4c)
   #:use-module (gnu packages image)
   #:use-module (gnu packages imagemagick)
+  #:use-module (gnu packages kerberos)
   #:use-module (gnu packages libevent)
   #:use-module (gnu packages libffi)
   #:use-module (gnu packages linux)
@@ -17171,3 +17172,41 @@ that take parsers as their arguments and return them 
as result values.")
     (synopsis "Patch python built-in objects")
     (description "This project allows Python code to extend built-in types.")
     (license (list license:gpl3+ license:expat))))
+
+(define-public python-k5test
+  (package
+    (name "python-k5test")
+    (version "0.9.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "k5test" version))
+        (sha256
+          (base32
+            "1lqp3jgfngyhaxjgj3n230hn90wsylwilh120yjf62h7b1s02mh8"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-six" ,python-six)
+       ;; `which`, `kadmin.local` binaries called inside library
+       ("which" ,which)
+       ("mit-krb5" ,mit-krb5)))
+    (native-inputs `(("mit-krb5" ,mit-krb5)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'patch-paths
+           (lambda* _
+            (substitute* "k5test/realm.py"
+              (("'kadmin_local'") "'kadmin.local'")))))))
+    (home-page
+      "https://github.com/pythongssapi/k5test";)
+    (synopsis
+      "Library for testing Python applications in self-contained Kerberos 5
+environments")
+    (description
+      "k5test is a library for setting up self-contained Kerberos 5
+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)))
+
-- 
2.20.1






reply via email to

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