fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
72 lines
1.2 KiB
Nix
72 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
alabaster,
|
|
alsa-lib,
|
|
buildPythonPackage,
|
|
CoreAudio,
|
|
CoreMIDI,
|
|
CoreServices,
|
|
Foundation,
|
|
cython,
|
|
fetchPypi,
|
|
flake8,
|
|
libjack2,
|
|
meson-python,
|
|
ninja,
|
|
pkg-config,
|
|
pythonOlder,
|
|
tox,
|
|
wheel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-rtmidi";
|
|
version = "1.5.8";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
pname = "python_rtmidi";
|
|
inherit version;
|
|
hash = "sha256-f5reaLBorgkADstWKulSHaOiNDYa1USeg/xzRUTQBPo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
meson-python
|
|
ninja
|
|
pkg-config
|
|
wheel
|
|
];
|
|
|
|
buildInputs =
|
|
[ ]
|
|
++ lib.optionals stdenv.isLinux [
|
|
libjack2
|
|
alsa-lib
|
|
]
|
|
++ lib.optionals stdenv.isDarwin [
|
|
CoreAudio
|
|
CoreMIDI
|
|
CoreServices
|
|
Foundation
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
tox
|
|
flake8
|
|
alabaster
|
|
];
|
|
|
|
pythonImportsCheck = [ "rtmidi" ];
|
|
|
|
meta = with lib; {
|
|
description = "A Python binding for the RtMidi C++ library implemented using Cython";
|
|
homepage = "https://github.com/SpotlightKid/python-rtmidi";
|
|
changelog = "https://github.com/SpotlightKid/python-rtmidi/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|