[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#37975] [PATCH 1/2] gnu: Add python-keyutils.
From: |
Guillaume Le Vaillant |
Subject: |
[bug#37975] [PATCH 1/2] gnu: Add python-keyutils. |
Date: |
Tue, 29 Oct 2019 10:31:34 +0100 |
* gnu/packages/python-crypto.scm (python-keyutils): New variable.
---
gnu/packages/python-crypto.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index f05c01060f..7dac25eb61 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -19,6 +19,7 @@
;;; Copyright © 2018 Nicolas Goaziou <address@hidden>
;;; Copyright © 2018 Vagrant Cascadian <address@hidden>
;;; Copyright © 2018 Nam Nguyen <address@hidden>
+;;; Copyright © 2019 Guillaume Le Vaillant <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1062,3 +1063,30 @@ Password-Authenticated Key Exchange algorithm.")
(description "This package provides a Twisted-based Tor controller client,
with state-tracking and configuration abstractions.")
(license license:expat)))
+
+(define-public python-keyutils
+ (package
+ (name "python-keyutils")
+ (version "0.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "keyutils" version))
+ (sha256
+ (base32
+ "0lipygpzhwzzsq2k5imb1jgkmj8y4khxdwhzadjs3bd56g6bmkx9"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-pytest" ,python-pytest)
+ ("python-pytest-runner" ,python-pytest-runner)))
+ (inputs
+ `(("keyutils" ,keyutils)))
+ (arguments
+ '(#:tests? #f))
+ (home-page "https://github.com/sassoftware/python-keyutils")
+ (synopsis "Python bindings for keyutils")
+ (description
+ "This is a set of python bindings for keyutils, a key management suite
+that leverages the infrastructure provided by the Linux kernel for safely
+storing and retrieving sensitive infromation in your programs.")
+ (license license:asl2.0)))
--
2.23.0
- [bug#37975] [PATCH 0/2] gnu: Add udiskie., Guillaume Le Vaillant, 2019/10/29
- [bug#37975] [PATCH 1/2] gnu: Add python-keyutils.,
Guillaume Le Vaillant <=
- [bug#37975] [PATCH 2/2] gnu: Add udiskie., Guillaume Le Vaillant, 2019/10/29
- [bug#37975] [PATCH 2/2] gnu: Add udiskie., Pierre Neidhardt, 2019/10/29
- [bug#37975] [PATCH v3 1/2] gnu: Add python-keyutils., Guillaume Le Vaillant, 2019/10/29
- [bug#37975] [PATCH v3 2/2] gnu: Add udiskie., Guillaume Le Vaillant, 2019/10/29
- [bug#37975] [PATCH v3 1/2] gnu: Add python-keyutils., Pierre Neidhardt, 2019/10/30