diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index 16d4fcd6e3..9a660aeec7 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2021 la snesne ;;; Copyright © 2021 Petr Hodina ;;; Copyright © 2021 Mathieu Laparie +;;; Copyright © 2024 jgart ;;; ;;; This file is part of GNU Guix. ;;; @@ -37,6 +38,7 @@ #: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 @@ format documents, with the following features: (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