mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: Add python-mygpoclient.
* gnu/packages/gpodder.scm (python-mygpoclient): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
4518a9dfa8
commit
b58ab1598f
1 changed files with 30 additions and 0 deletions
|
@ -57,6 +57,36 @@ (define-public libmygpo-qt
|
|||
and track podcasts.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public python-mygpoclient
|
||||
(package
|
||||
(name "python-mygpoclient")
|
||||
(version "1.8")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "mygpoclient" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1fi5x6k1mngr0iviw2s4n1f3y2x7pwqy5ivkcrjdprzvwr37f0mh"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("python-coverage" ,python-coverage)
|
||||
("python-minimock" ,python-minimock)
|
||||
("python-nose" ,python-nose)))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "make" "test"))))))
|
||||
(home-page "https://mygpoclient.readthedocs.io")
|
||||
(synopsis "Python library for the gPodder web service")
|
||||
(description "@code{mygpoclient} provides an easy and structured way to
|
||||
access the @url{https://gpodder.net} web services. In addition to
|
||||
subscription list synchronization and storage, the API supports uploading and
|
||||
downloading episode status changes.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public python-podcastparser
|
||||
(package
|
||||
(name "python-podcastparser")
|
||||
|
|
Loading…
Reference in a new issue