mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
pythonPackages.mido: init at 1.2.9
This commit is contained in:
parent
75f5c4381c
commit
8eb5780cc7
3 changed files with 60 additions and 0 deletions
39
pkgs/development/python-modules/mido/default.nix
Normal file
39
pkgs/development/python-modules/mido/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ stdenv, lib, buildPythonPackage, fetchPypi, substituteAll
|
||||
, portmidi, pygame, python-rtmidi, rtmidi-python
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mido";
|
||||
version = "1.2.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1k3sgkxc7j49bapib3b5jnircb1yhyyd8mi0mbfd78zgix9db9y4";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(substituteAll {
|
||||
src = ./libportmidi-cdll.patch;
|
||||
libportmidi = "${portmidi.out}/lib/libportmidi${stdenv.targetPlatform.extensions.sharedLibrary}";
|
||||
})
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pygame
|
||||
python-rtmidi
|
||||
rtmidi-python
|
||||
];
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
checkPhase = ''
|
||||
py.test . -rs -q
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "MIDI Objects for Python";
|
||||
homepage = "https://mido.readthedocs.io";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
19
pkgs/development/python-modules/mido/libportmidi-cdll.patch
Normal file
19
pkgs/development/python-modules/mido/libportmidi-cdll.patch
Normal file
|
@ -0,0 +1,19 @@
|
|||
diff --git a/mido/backends/portmidi_init.py b/mido/backends/portmidi_init.py
|
||||
index 84bb128..5efcdaa 100644
|
||||
--- a/mido/backends/portmidi_init.py
|
||||
+++ b/mido/backends/portmidi_init.py
|
||||
@@ -10,13 +10,7 @@ from ctypes import (CDLL, CFUNCTYPE, POINTER, Structure, c_char_p,
|
||||
create_string_buffer, byref)
|
||||
import ctypes.util
|
||||
|
||||
-dll_name = ''
|
||||
-if sys.platform == 'darwin':
|
||||
- dll_name = ctypes.util.find_library('libportmidi.dylib')
|
||||
-elif sys.platform in ('win32', 'cygwin'):
|
||||
- dll_name = 'portmidi.dll'
|
||||
-else:
|
||||
- dll_name = 'libportmidi.so'
|
||||
+dll_name = '@libportmidi@'
|
||||
|
||||
lib = CDLL(dll_name)
|
||||
|
|
@ -3196,6 +3196,8 @@ in {
|
|||
|
||||
midiutil = callPackage ../development/python-modules/midiutil {};
|
||||
|
||||
mido = callPackage ../development/python-modules/mido { };
|
||||
|
||||
misaka = callPackage ../development/python-modules/misaka {};
|
||||
|
||||
mlrose = callPackage ../development/python-modules/mlrose { };
|
||||
|
|
Loading…
Reference in a new issue