me
/
guix
Archived
1
0
Fork 0

gnu: Add python-signedjson.

* gnu/packages/python-xyz.scm (python-signedjson): New variable.

Co-authored-by: Marius Bakke <mbakke@fastmail.com>
master
Alex ter Weele 2020-02-29 11:09:58 -06:00 committed by Marius Bakke
parent 77b32f61f9
commit af1f7a3279
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 34 additions and 0 deletions

View File

@ -18801,3 +18801,37 @@ choose to use Base64 without the “=” padding.")
@item Can encode frozendict immutable dictionaries.
@end itemize")
(license license:asl2.0)))
(define-public python-signedjson
(package
(name "python-signedjson")
(version "1.1.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "signedjson" version))
(sha256
(base32 "0280f8zyycsmd7iy65bs438flm7m8ffs1kcxfbvhi8hbazkqc19m"))))
(build-system python-build-system)
(propagated-inputs
`(("python-canonicaljson" ,python-canonicaljson)
("python-importlib-metadata" ,python-importlib-metadata)
("python-pynacl" ,python-pynacl)
("python-typing-extensions" ,python-typing-extensions)
("python-unpaddedbase64" ,python-unpaddedbase64)))
(native-inputs
`(("python-setuptools-scm" ,python-setuptools-scm)))
(home-page "https://github.com/matrix-org/python-signedjson")
(synopsis "Sign JSON objects with ED25519 signatures")
(description
"Sign JSON objects with ED25519 signatures.
@itemize
@item More than one entity can sign the same object.
@item Each entity can sign the object with more than one key making it easier to
rotate keys
@item ED25519 can be replaced with a different algorithm.
@item Unprotected data can be added to the object under the @dfn{\"unsigned\"}
key.
@end itemize")
(license license:asl2.0)))