python3Packages.pyliblo: Disable for python>=3.11

Uses removed functions in the inspect module and last development
happened in 2015.
This commit is contained in:
Martin Weinelt 2023-01-03 16:40:38 +01:00
parent afa8c47666
commit 8fdb3b675c

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchurl
, isPyPy
, pythonAtLeast
, liblo
, cython
}:
@ -9,7 +10,7 @@
buildPythonPackage rec {
pname = "pyliblo";
version = "0.10.0";
disabled = isPyPy;
disabled = isPyPy || pythonAtLeast "3.11";
src = fetchurl {
url = "http://das.nasophon.de/download/${pname}-${version}.tar.gz";