guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: Add python-pyportmidi.


From: Ricardo Wurmus
Subject: 02/04: gnu: Add python-pyportmidi.
Date: Mon, 02 May 2016 18:02:50 +0000

rekado pushed a commit to branch master
in repository guix.

commit f65d59fc8e72f13933a9a9b795ef12b0f67d1f36
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Apr 27 21:25:14 2016 +0200

    gnu: Add python-pyportmidi.
    
    * gnu/packages/music.scm (python-pyportmidi): New variable.
---
 gnu/packages/music.scm |   34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 96495bf..fba4336 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -988,6 +988,40 @@ projects.")
 using a system-independent interface.")
     (license license:expat)))
 
+(define-public python-pyportmidi
+  (package
+    (name "python-pyportmidi")
+    (version (package-version portmidi))
+    (source (package-source portmidi))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f ; no tests included
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'enter-dir
+           (lambda _ (chdir "pm_python") #t))
+         (add-after 'enter-dir 'fix-setup.py
+           (lambda _
+             (substitute* "setup.py"
+               ;; Use Python 3 syntax
+               (("print (\".*\")" _ text)
+                (string-append "print(" text ")\n"))
+               ;; TODO.txt and CHANGES.txt don't exist
+               (("CHANGES =.*") "CHANGES = \"\"\n")
+               (("TODO =.*") "TODO = \"\"\n"))
+             #t)))))
+    (inputs
+     `(("portmidi" ,portmidi)
+       ("alsa-lib" ,alsa-lib)
+       ("python-cython" ,python-cython)))
+    (native-inputs
+     `(("unzip" ,unzip)))
+    (home-page "http://portmedia.sourceforge.net/portmidi/";)
+    (synopsis "Python bindings to PortMidi")
+    (description
+     "This package provides Python bindings to the PortMidi library.")
+    (license license:expat)))
+
 (define-public frescobaldi
   (package
     (name "frescobaldi")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]