diff options
author | Ian Eure <ian@retrospec.tv> | 2024-02-25 14:20:30 -0800 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2024-03-07 20:18:45 +0100 |
commit | 2c5be45f3a3b1a60b3f5b2e02bc7f2f71b461c3b (patch) | |
tree | 1232d38980925142c1bad76368809f55decda11c /gnu/packages/python-xyz.scm | |
parent | 0db53e647028df60223ce0e2d4a404deaaca7652 (diff) |
gnu: Add python-mpv-jsonipc.
* gnu/packages/python-xyz.scm (python-mpv-jsonipc): New variable.
Change-Id: Iec7679213d9b9e8e5cbf01a30838e27e71704e54
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index fc6e997b6c..55fd4cdad2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -147,6 +147,7 @@ ;;; Copyright © 2023 Attila Lendvai <attila@lendvai.name> ;;; Copyright © 2023, 2024 Troy Figiel <troy@troyfigiel.com> ;;; Copyright © 2024 Timothee Mathieu <timothee.mathieu@inria.fr> +;;; Copyright © 2024 Ian Eure <ian@retrospec.tv> ;;; ;;; This file is part of GNU Guix. ;;; @@ -25936,6 +25937,23 @@ cases, generating additional test cases, testing for your code, and submitting it.") (license license:expat))) +(define-public python-mpv-jsonipc + (package + (name "python-mpv-jsonipc") + (version "1.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python-mpv-jsonipc" version)) + (sha256 + (base32 "0ymdwrx544a6gn6wm9dixpgzbfrbpxvcj5ys7m41cgb4lvpvx691")))) + (build-system pyproject-build-system) + (home-page "https://github.com/iwalton3/python-mpv-jsonipc") + (synopsis "Python API to control MPV using JSON IPC") + (description "Python MPV JSONIPC implements an interface similar to +python-mpv, but it uses the JSON IPC protocol instead of the C API.") + (license license:asl2.0))) + (define-public python-parso (package (name "python-parso") |