aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Eure <ian@retrospec.tv>2025-03-26 19:44:31 -0700
committerIan Eure <ian@retrospec.tv>2025-04-21 16:23:38 -0700
commit032ffbc7477dc0a0e018a231d4789461229126a8 (patch)
tree7f130256b7277278d4d4301e4bca4c7913e260c6
parent7a4193ec4a09fecc68dc726c1e0bbb5ad03d404a (diff)
downloadguix-032ffbc7477dc0a0e018a231d4789461229126a8.tar.gz
guix-032ffbc7477dc0a0e018a231d4789461229126a8.zip
gnu: python-jellyfin-apiclient: Update to 1.11.0.
* gnu/packages/python-xyz.scm (python-jellyfin-apiclient): Update to 1.11.0. Change-Id: I7be4b4737bfe50abb0dae740008eafa41c9cc9ca
-rw-r--r--gnu/packages/python-xyz.scm13
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b4f6152928..5ba727694f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -29417,15 +29417,18 @@ python-mpv, but it uses the JSON IPC protocol instead of the C API.")
(define-public python-jellyfin-apiclient
(package
(name "python-jellyfin-apiclient")
- (version "1.9.2")
+ (version "1.11.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "jellyfin-apiclient-python" version))
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/jellyfin/jellyfin-apiclient-python.git")
+ (commit (string-append "v" version))))
(sha256
- (base32 "0r67cp9nizvn3cbslgi30zpd3mw4a6zal0ygik3jv5lni1xdkk5w"))))
+ (base32 "1l30r7s4djvcsnf342af8mvh4c68v9b37j5y47k6cpaj8fj78lac"))))
(build-system pyproject-build-system)
- (native-inputs (list python-setuptools python-wheel))
+ (native-inputs (list python-setuptools python-pytest python-wheel))
(propagated-inputs (list python-certifi python-requests python-urllib3
python-websocket-client))
(home-page "https://github.com/jellyfin/jellyfin-apiclient-python")