python311Packages.python-rtmidi: disable

https://hydra.nixos.org/build/219084783
This commit is contained in:
Martin Weinelt 2023-05-09 03:00:58 +02:00
parent c0c84d5292
commit 8b458f0ad0
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

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 ];
};