From fba4cce694d76ec190c28bfd8365cb4da8503ffa Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Wed, 5 Jan 2022 10:02:05 +0100 Subject: [PATCH] python3Packages.nidaqmx: fix eval failing due to misspelling Introduced in commit ff7990087c63623eb31ef8e22bcfdc22. --- pkgs/development/python-modules/nidaqmx/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/nidaqmx/default.nix b/pkgs/development/python-modules/nidaqmx/default.nix index 937688d0c4e3..60c9f271011c 100644 --- a/pkgs/development/python-modules/nidaqmx/default.nix +++ b/pkgs/development/python-modules/nidaqmx/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { version = src.rev; # 3.10 is not supported, upstream inactive - disabled = pythonAtleast "3.10"; + disabled = pythonAtLeast "3.10"; src = fetchFromGitHub { owner = "ni";