diff options
Diffstat (limited to 'gnu/packages/python-crypto.scm')
| -rw-r--r-- | gnu/packages/python-crypto.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index f05c01060fa..7dac25eb616 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | ;;; Copyright © 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr> | 19 | ;;; Copyright © 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr> |
| 20 | ;;; Copyright © 2018 Vagrant Cascadian <vagrant@debian.org> | 20 | ;;; Copyright © 2018 Vagrant Cascadian <vagrant@debian.org> |
| 21 | ;;; Copyright © 2018 Nam Nguyen <namn@berkeley.edu> | 21 | ;;; Copyright © 2018 Nam Nguyen <namn@berkeley.edu> |
| 22 | ;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net> | ||
| 22 | ;;; | 23 | ;;; |
| 23 | ;;; This file is part of GNU Guix. | 24 | ;;; This file is part of GNU Guix. |
| 24 | ;;; | 25 | ;;; |
| @@ -1062,3 +1063,30 @@ Password-Authenticated Key Exchange algorithm.") | |||
| 1062 | (description "This package provides a Twisted-based Tor controller client, | 1063 | (description "This package provides a Twisted-based Tor controller client, |
| 1063 | with state-tracking and configuration abstractions.") | 1064 | with state-tracking and configuration abstractions.") |
| 1064 | (license license:expat))) | 1065 | (license license:expat))) |
| 1066 | |||
| 1067 | (define-public python-keyutils | ||
| 1068 | (package | ||
| 1069 | (name "python-keyutils") | ||
| 1070 | (version "0.6") | ||
| 1071 | (source | ||
| 1072 | (origin | ||
| 1073 | (method url-fetch) | ||
| 1074 | (uri (pypi-uri "keyutils" version)) | ||
| 1075 | (sha256 | ||
| 1076 | (base32 | ||
| 1077 | "0lipygpzhwzzsq2k5imb1jgkmj8y4khxdwhzadjs3bd56g6bmkx9")))) | ||
| 1078 | (build-system python-build-system) | ||
| 1079 | (native-inputs | ||
| 1080 | `(("python-pytest" ,python-pytest) | ||
| 1081 | ("python-pytest-runner" ,python-pytest-runner))) | ||
| 1082 | (inputs | ||
| 1083 | `(("keyutils" ,keyutils))) | ||
| 1084 | (arguments | ||
| 1085 | '(#:tests? #f)) | ||
| 1086 | (home-page "https://github.com/sassoftware/python-keyutils") | ||
| 1087 | (synopsis "Python bindings for keyutils") | ||
| 1088 | (description | ||
| 1089 | "This is a set of python bindings for keyutils, a key management suite | ||
| 1090 | that leverages the infrastructure provided by the Linux kernel for safely | ||
| 1091 | storing and retrieving sensitive infromation in your programs.") | ||
| 1092 | (license license:asl2.0))) | ||
