python3Packages.nidaqmx: mark disabled for 3.10+

This commit is contained in:
Jonathan Ringer 2022-01-04 22:28:31 -08:00
parent cf30a8b904
commit ff7990087c
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -7,6 +7,7 @@
, pykka
, enum34
, pythonOlder
, pythonAtLeast
}:
# Note we currently do not patch the path to the drivers
@ -17,6 +18,9 @@ buildPythonPackage rec {
pname = "nidaqmx";
version = src.rev;
# 3.10 is not supported, upstream inactive
disabled = pythonAtleast "3.10";
src = fetchFromGitHub {
owner = "ni";
repo = "nidaqmx-python";