[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#28783] Some of the python-autobahn dependencies
From: |
Ludovic Courtès |
Subject: |
[bug#28783] Some of the python-autobahn dependencies |
Date: |
Sat, 14 Oct 2017 17:00:46 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) |
ng0 <address@hidden> skribis:
> From a53a68a175768c2dd7712582553a5f0d125574f9 Mon Sep 17 00:00:00 2001
> From: ng0 <address@hidden>
> Date: Wed, 11 Oct 2017 09:47:15 +0000
> Subject: [PATCH 1/5] gnu: Add python-cbor.
>
> * gnu/packages/serialization.scm (python-cbor): New variable.
Applied with these cosmetic changes:
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 266d2eeee..7d25e0d91 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -399,13 +399,12 @@ style and key ordering are kept, so you can diff the
source.")
(base32
"1dmv163cnslyqccrybkxn0c9s1jk1mmafmgxv75iamnz5lk5l8hk"))))
(build-system python-build-system)
- (home-page
- "https://bitbucket.org/bodhisnarkva/cbor")
- (synopsis "Implementation of Concise Binary Object Representation")
+ (home-page "https://bitbucket.org/bodhisnarkva/cbor")
+ (synopsis "Implementation of the Concise Binary Object Representation")
(description
- "Python-cbor provides an implementation of
-Concise Binary Object Representation (CBOR). CBOR is comparable to
-JSON, has a superset of JSON’s ability, but serializes to a binary format
-which is smaller and faster to generate and parse.
-The two primary functions are cbor.loads() and cbor.dumps().")
+ "Python-cbor provides an implementation of the Concise Binary Object
+Representation (CBOR). CBOR is comparable to JSON, has a superset of JSON's
+ability, but serializes to a binary format which is smaller and faster to
+generate and parse. The two primary functions are @code{cbor.loads} and
address@hidden")
(license license:asl2.0)))
Ludo’.