mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
python3Packages.nidaqmx: mark disabled for 3.10+
This commit is contained in:
parent
cf30a8b904
commit
ff7990087c
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user