Files
nixpkgs/pkgs/development/python-modules/python-rtmidi/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

73 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 = "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; [ ];
};
}