mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: python-ebooklib: Update to 0.18.
* gnu/packages/ebook.scm (python-ebooklib): Update to 0.18. [build-system]: Use pyproject-build-system. [arguments]: Explicitly disable test phase. [propagated-inputs]: Remove python-six. Change-Id: I9ada310bce92866b2e855db93267a84324f2c83a
This commit is contained in:
parent
2e7f3849b2
commit
e58d5e1dba
1 changed files with 7 additions and 4 deletions
|
@ -11,6 +11,7 @@
|
|||
;;; Copyright © 2021 la snesne <lasnesne@lagunposprasihopre.org>
|
||||
;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
|
||||
;;; Copyright © 2021 Mathieu Laparie <mlaparie@disr.it>
|
||||
;;; Copyright © 2024 jgart <jgart@dismail.de>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -37,6 +38,7 @@ (define-module (gnu packages ebook)
|
|||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system meson)
|
||||
#:use-module (guix build-system pyproject)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module (guix build-system qt)
|
||||
#:use-module (gnu packages)
|
||||
|
@ -686,15 +688,16 @@ (define-public libmobi
|
|||
(define-public python-ebooklib
|
||||
(package
|
||||
(name "python-ebooklib")
|
||||
(version "0.17.1")
|
||||
(version "0.18")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "EbookLib" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1w972g0kmh9cdxf3kjr7v4k99wvv4lxv3rxkip39c08550nf48zy"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs (list python-lxml python-six))
|
||||
"0cx5q6hvaka5lsbzc5q93mfkpsg44x4hp4z9aszxk55wlx1jcmiq"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments (list #:tests? #f)) ; There are no tests.
|
||||
(propagated-inputs (list python-lxml))
|
||||
(home-page "https://github.com/aerkalov/ebooklib")
|
||||
(synopsis "Ebook library which can handle EPUB2/EPUB3 and Kindle format")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue