python311Packages.python-rtmidi: disable
https://hydra.nixos.org/build/219084783
This commit is contained in:
parent
c0c84d5292
commit
8b458f0ad0
@ -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 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user