diff options
author | Manolis Ragkousis <manolis837@gmail.com> | 2017-08-01 17:56:26 +0300 |
---|---|---|
committer | Manolis Ragkousis <manolis837@gmail.com> | 2017-08-02 20:20:12 +0300 |
commit | 9ef5940ce4b0548e7831436a8f34967e21f8d69e (patch) | |
tree | 732f2e5dde2e6d235863843401b32d7d9aab91d9 | |
parent | 721d7a69126113c4dd068a7c86f339cf5e96b69d (diff) | |
download | guix-9ef5940ce4b0548e7831436a8f34967e21f8d69e.tar.gz guix-9ef5940ce4b0548e7831436a8f34967e21f8d69e.zip |
gnu: calibre: Add python2-msgpack as an input.
* gnu/packages/ebook.scm (calibre)[inputs]: Add python2-msgpack.
-rw-r--r-- | gnu/packages/ebook.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index bbb127a7d9..32f4f3b2d1 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -41,6 +41,7 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages qt) + #:use-module (gnu packages serialization) #:use-module (gnu packages tls) #:use-module (gnu packages web) #:use-module (gnu packages xorg)) @@ -126,6 +127,8 @@ ("python2-lxml" ,python2-lxml) ("python2-markdown" ,python2-markdown) ("python2-mechanize" ,python2-mechanize) + ;; python2-msgpack is needed for the network content server to work. + ("python2-msgpack" ,python2-msgpack) ("python2-netifaces" ,python2-netifaces) ("python2-pillow" ,python2-pillow) ("python2-pygments" ,python2-pygments) |