diff options
author | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-05-30 18:07:01 +0200 |
---|---|---|
committer | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-06-22 18:34:38 +0200 |
commit | 9e2cdf724e76cd22d50fd694c8c1d1fc7a4b2eb4 (patch) | |
tree | 3c02159f504925bf9d9181ea73444eb986fcc9ab | |
parent | 58932576263d728225b6f2b32635fb5161573769 (diff) | |
download | guix-9e2cdf724e76cd22d50fd694c8c1d1fc7a4b2eb4.tar guix-9e2cdf724e76cd22d50fd694c8c1d1fc7a4b2eb4.tar.gz |
gnu: Add python-python3-midi.
* gnu/packages/audio.scm (python-python3-midi): New variable.
-rw-r--r-- | gnu/packages/audio.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 9b259edfdf..db05735c95 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2462,6 +2462,24 @@ included are the command line utilities @code{send_osc} and @code{dump_osc}.") CFFI and NumPy.") (license license:expat))) +(define-public python-python3-midi + (package + (name "python-python3-midi") + (version "0.2.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python3_midi" version)) + (sha256 + (base32 + "1z9j1w7mpn3xhkcpxmqm5rvmj6nffb5rf14bv7n3sdh07nf6n7sf")))) + (build-system python-build-system) + (home-page "https://github.com/NFJones/python3-midi") + (synopsis "Python MIDI API") + (description "This package provides a python API to read and write MIDI +files.") + (license license:expat))) + (define-public lilv (package (name "lilv") |