mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
61d95bbd40
Pregenerated rtmidi_python.cpp is incompatible with Python 3.9.
35 lines
722 B
Nix
35 lines
722 B
Nix
{ lib, buildPythonPackage, fetchPypi, cython, alsaLib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rtmidi-python";
|
|
version = "0.2.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1wpcaxfpbmsjc78g8841kpixr0a3v6zn0ak058s3mm25kcysp4m0";
|
|
};
|
|
|
|
postPatch = ''
|
|
rm rtmidi_python.cpp
|
|
'';
|
|
|
|
nativeBuildInputs = [ cython ];
|
|
buildInputs = [ alsaLib ];
|
|
|
|
setupPyBuildFlags = [ "--from-cython" ];
|
|
|
|
# package has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"rtmidi_python"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper for RtMidi";
|
|
homepage = "https://github.com/superquadratic/rtmidi-python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|