e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
71 lines
1.2 KiB
Nix
71 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, alabaster
|
|
, alsa-lib
|
|
, buildPythonPackage
|
|
, CoreAudio
|
|
, CoreMIDI
|
|
, CoreServices
|
|
, Foundation
|
|
, cython_3
|
|
, 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_3
|
|
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; [ ];
|
|
};
|
|
}
|