me
/
guix
Archived
1
0
Fork 0

gnu: Add python-cbor2.

* gnu/packages/python-web.scm (python-cbor2): New variable.
master
Maxim Cournoyer 2022-04-17 23:18:30 -04:00
parent a81161c1a4
commit c5d5c14101
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 40 additions and 0 deletions

View File

@ -575,6 +575,46 @@ Model} (SAM) templates into AWS CloudFormation templates.")
emit information from within their applications to the AWS X-Ray service.") emit information from within their applications to the AWS X-Ray service.")
(license license:asl2.0))) (license license:asl2.0)))
(define-public python-cbor2
(package
(name "python-cbor2")
(version "5.4.2.post1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "cbor2" version))
(sha256
(base32 "15y78xcc3zkmvj1mdzz8gyhf3apbl91073kwhzbjk5abc1civwlw"))))
(build-system python-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-vv")))))))
(native-inputs (list python-pytest python-pytest-cov python-setuptools-scm))
(home-page "https://github.com/agronholm/cbor2")
(synopsis "Concise Binary Object Representation (CBOR) (de)serializer")
(description "This Python library provides encoding and decoding for the
Concise Binary Object
Representation (CBOR) (@url{https://www.rfc-editor.org/rfc/rfc8949.html, RFC
8949}) serialization format. The specification is fully compatible with the
original RFC 7049. Among its features are:
@itemize
@item Simple API like the @code{json} or @code{pickle} modules.
@item Support many CBOR tags with stdlib objects.
@item Generic tag decoding.
@item Shared value references including cyclic references.
@item String references compact encoding with repeated strings replaced with
indices.
@item Optional C module backend tested on big- and little-endian architectures.
@item Extensible tagged value handling using tag_hook and object_hook on
decode and default on encode.
@end itemize")
(license license:expat)))
(define-public python-cfn-lint (define-public python-cfn-lint
(package (package
(name "python-cfn-lint") (name "python-cfn-lint")