guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: Add python-jeepney.


From: guix-commits
Subject: 02/04: gnu: Add python-jeepney.
Date: Sat, 11 Jan 2020 16:49:20 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 83feb3d005d3c098838596fbc0a3e1de1b62b131
Author: Efraim Flashner <address@hidden>
AuthorDate: Sat Jan 11 23:34:43 2020 +0200

    gnu: Add python-jeepney.
    
    * gnu/packages/python-crypto.scm (python-jeepney): New variable.
---
 gnu/packages/python-crypto.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 43a0d95..b95a4f2 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1135,3 +1135,26 @@ storing and retrieving sensitive information in your 
programs.")
 package provides a tool to securely sign firmware images for booting by
 MCUboot.")
     (license license:expat)))
+
+(define-public python-jeepney
+  (package
+    (name "python-jeepney")
+    (version "0.4.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "jeepney" version))
+        (sha256
+         (base32
+          "1fz9lb5fl831sijg2j0sbki698j2z6awbblas7mz3gp9jz2xi9hb"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-testpath" ,python-testpath)
+       ("python-tornado" ,python-tornado)
+       ("python-pytest" ,python-pytest)))
+    (home-page "https://gitlab.com/takluyver/jeepney";)
+    (synopsis "Low-level, pure Python DBus protocol wrapper")
+    (description
+     "This is a low-level, pure Python DBus protocol client.  It has an
+I/O-free core, and integration modules for different event loops.")
+    (license license:expat)))



reply via email to

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