diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2025-04-28 12:18:35 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2025-04-28 12:21:21 +0200 |
| commit | c41b015ba3164a6316da38d44518de885fa296d3 (patch) | |
| tree | 9232a9260c2ec8c19303f5862ee0be22bb88d5b6 | |
| parent | 881d46eb386c2de8bc6f1405972ee1e115eeb3a1 (diff) | |
gnu: Add python-pyliblo3.
* gnu/packages/audio.scm (python-pyliblo3): New variable.
Change-Id: If06ddf97fef4d5c17beb70aaeeb5068a064127ef
| -rw-r--r-- | gnu/packages/audio.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 03867b2da3..3a8e8faecb 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -3338,6 +3338,31 @@ to send and receive OSC messages using a nice and simple Python API. Also included are the command line utilities @code{send_osc} and @code{dump_osc}.") (license license:lgpl2.1+))) +(define-public python-pyliblo3 + (package + (name "python-pyliblo3") + (version "0.16.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gesellkammer/pyliblo3") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1rr2m8jxa5yxyb3pw6h93kvdxg7x0m6sxxxvgn34vq8k8mg1kz21")))) + (build-system pyproject-build-system) + (native-inputs (list python-cython python-setuptools python-wheel)) + (inputs (list liblo)) + (home-page "https://github.com/gesellkammer/pyliblo3") + (synopsis "Python bindings for liblo") + (description + "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC) +library. It supports almost the complete functionality of liblo, allowing you +to send and receive OSC messages using a nice and simple Python API. Also +included are the command line utilities @code{send_osc} and @code{dump_osc}.") + (license license:lgpl2.1+))) + (define-public python-soundfile (package (name "python-soundfile") |
