summary refs log tree commit diff
path: root/pkgs/development/python-modules/nidaqmx
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2022-01-05 10:02:05 +0100
committersternenseemann <sternenseemann@systemli.org>2022-01-05 10:02:05 +0100
commitfba4cce694d76ec190c28bfd8365cb4da8503ffa (patch)
tree4362aee55f2f53616129a97d28bbc5e6182717e8 /pkgs/development/python-modules/nidaqmx
parent8b2853659868448ccf8ced72cc4c656f9c5e0fab (diff)
downloadnixpkgs-fba4cce694d76ec190c28bfd8365cb4da8503ffa.tar
nixpkgs-fba4cce694d76ec190c28bfd8365cb4da8503ffa.tar.gz
nixpkgs-fba4cce694d76ec190c28bfd8365cb4da8503ffa.tar.bz2
nixpkgs-fba4cce694d76ec190c28bfd8365cb4da8503ffa.tar.lz
nixpkgs-fba4cce694d76ec190c28bfd8365cb4da8503ffa.tar.xz
nixpkgs-fba4cce694d76ec190c28bfd8365cb4da8503ffa.tar.zst
nixpkgs-fba4cce694d76ec190c28bfd8365cb4da8503ffa.zip
python3Packages.nidaqmx: fix eval failing due to misspelling
Introduced in commit ff7990087c63623eb31ef8e22bcfdc22.
Diffstat (limited to 'pkgs/development/python-modules/nidaqmx')
-rw-r--r--pkgs/development/python-modules/nidaqmx/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/nidaqmx/default.nix b/pkgs/development/python-modules/nidaqmx/default.nix
index 937688d0c4e..60c9f271011 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";