From: Sughosha via Guix-patches via <guix-patches@gnu.org>
To: 65367@debbugs.gnu.org
Cc: Sughosha <sughosha@disroot.org>,
Lars-Dominik Braun <lars@6xq.net>, jgart <jgart@dismail.de>
Subject: [bug#65367] [PATCH 4/5] gnu: Add python-mido.
Date: Fri, 18 Aug 2023 17:35:41 +0200 [thread overview]
Message-ID: <8937b7766b37fc71719fa6cc90643f53debcef23.1692372645.git.sughosha@disroot.org> (raw)
In-Reply-To: <cover.1692372644.git.sughosha@disroot.org>
* gnu/packages/python-xyz.scm (python-mido): New variable.
---
gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 84f0e3a049..a249e6d846 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23039,6 +23039,29 @@ (define-public python-pydub
@code{ffmpeg} to open various audio formats.")
(license license:expat))) ; MIT license
+(define-public python-mido
+ (package
+ (name "python-mido")
+ (version "1.3.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "mido" version))
+ (sha256
+ (base32
+ "1al6r86pa0700862cm5qmzz5q94qrgdv4392hkws7g1lrqx2wa44"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (delete 'sanity-check)))) ;fails
+ (propagated-inputs (list python-importlib-metadata python-packaging))
+ (native-inputs (list python-pytest))
+ (home-page "https://mido.readthedocs.io/en/stable/")
+ (synopsis "MIDI Objects for Python")
+ (description "This library is for working with MIDI 1.0 ports, messages and
+files.")
+ (license license:expat)))
+
(define-public python-tqdm
(package
(name "python-tqdm")
--
2.41.0
next prev parent reply other threads:[~2023-08-18 15:38 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-18 15:35 [bug#65367] [PATCH 0/5] gnu: Add stargate Sughosha via Guix-patches via
2023-08-18 15:35 ` [bug#65368] [PATCH 1/5] gnu: Add python-wavefile Sughosha via Guix-patches via
2023-10-08 23:50 ` [bug#65368] Sharlatan Hellseher
2023-08-18 15:35 ` [bug#65369] [PATCH 2/5] gnu: Add python-pymarshal Sughosha via Guix-patches via
2023-08-18 15:35 ` [bug#65367] [PATCH 3/5] gnu: Add python-packaging Sughosha via Guix-patches via
2023-08-18 15:35 ` Sughosha via Guix-patches via [this message]
2023-08-18 15:35 ` [bug#65367] [PATCH 5/5] gnu: Add stargate Sughosha via Guix-patches via
2023-10-31 13:44 ` [bug#65367] [PATCH v2 0/4] " Sughosha via Guix-patches via
2023-10-31 13:44 ` [bug#65367] [PATCH v2 1/4] gnu: Add python-wavefile Sughosha via Guix-patches via
2023-10-31 13:44 ` [bug#65367] [PATCH v2 2/4] gnu: Add python-pymarshal Sughosha via Guix-patches via
2023-10-31 13:44 ` [bug#65367] [PATCH v2 3/4] gnu: Add python-mido Sughosha via Guix-patches via
2023-10-31 13:44 ` [bug#65367] [PATCH v2 4/4] gnu: Add stargate Sughosha via Guix-patches via
2023-10-31 17:08 ` [bug#65367] [PATCH v3 0/4] " Sughosha via Guix-patches via
2023-10-31 17:08 ` [bug#65367] [PATCH v3 1/4] gnu: Add python-wavefile Sughosha via Guix-patches via
2023-10-31 17:08 ` [bug#65367] [PATCH v3 2/4] gnu: Add python-pymarshal Sughosha via Guix-patches via
2023-10-31 17:08 ` [bug#65367] [PATCH v3 3/4] gnu: Add python-mido Sughosha via Guix-patches via
2023-10-31 17:08 ` [bug#65367] [PATCH v3 4/4] gnu: Add stargate Sughosha via Guix-patches via
2024-06-05 15:52 ` [bug#65367] [PATCH v4 0/4] " Sughosha via Guix-patches via
2024-06-05 15:52 ` [bug#65367] [PATCH v4 1/4] gnu: Add python-pymarshal Sughosha via Guix-patches via
2024-06-05 15:52 ` [bug#65367] [PATCH v4 2/4] gnu: Add python-mido Sughosha via Guix-patches via
2024-06-05 15:52 ` [bug#65367] [PATCH v4 3/4] gnu: Add python-wavefile Sughosha via Guix-patches via
2024-06-05 15:52 ` [bug#65367] [PATCH v4 4/4] gnu: Add stargate Sughosha via Guix-patches via
2024-06-13 9:36 ` bug#65367: [PATCH v4 0/4] " Ludovic Courtès
2024-06-13 16:01 ` [bug#65367] " Sughosha via Guix-patches via
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8937b7766b37fc71719fa6cc90643f53debcef23.1692372645.git.sughosha@disroot.org \
--to=guix-patches@gnu.org \
--cc=65367@debbugs.gnu.org \
--cc=jgart@dismail.de \
--cc=lars@6xq.net \
--cc=sughosha@disroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).