Merge pull request #230795 from mweinelt/rtmidi-disable-311

python311Packages.python-rtmidi: disable
This commit is contained in:
Thiago Kenji Okada 2023-05-09 12:10:34 +01:00 committed by GitHub
commit aeb1c00929
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,8 @@
, stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, pythonOlder
, pythonAtLeast
, pkg-config
, alsa-lib
, libjack2
@ -17,7 +18,9 @@
buildPythonPackage rec {
pname = "python-rtmidi";
version = "1.4.9";
disabled = isPy27;
# https://github.com/SpotlightKid/python-rtmidi/issues/115
disabled = pythonOlder "3.6" || pythonAtLeast "3.11";
src = fetchPypi {
inherit pname version;
@ -42,7 +45,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A Python binding for the RtMidi C++ library implemented using Cython";
homepage = "https://chrisarndt.de/projects/python-rtmidi/";
homepage = "https://github.com/SpotlightKid/python-rtmidi";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};