diff options
Diffstat (limited to 'pkgs/development/python-modules/nidaqmx/default.nix')
-rw-r--r-- | pkgs/development/python-modules/nidaqmx/default.nix | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/nidaqmx/default.nix b/pkgs/development/python-modules/nidaqmx/default.nix index 7c010a224340..c7efc2f3fb12 100644 --- a/pkgs/development/python-modules/nidaqmx/default.nix +++ b/pkgs/development/python-modules/nidaqmx/default.nix @@ -1,13 +1,12 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, six -, numpy -, pytestCheckHook -, pykka -, enum34 -, pythonOlder -, pythonAtLeast +{ + lib, + buildPythonPackage, + fetchFromGitHub, + six, + numpy, + pytestCheckHook, + pykka, + pythonAtLeast, }: # Note we currently do not patch the path to the drivers @@ -32,8 +31,6 @@ buildPythonPackage rec { propagatedBuildInputs = [ numpy six - ] ++ lib.optionals (pythonOlder "3.4") [ - enum34 ]; nativeCheckInputs = [ @@ -48,9 +45,7 @@ buildPythonPackage rec { # Fixture "x_series_device" called directly. Fixtures are not meant to be called directly doCheck = false; - pythonImportsCheck = [ - "nidaqmx.task" - ]; + pythonImportsCheck = [ "nidaqmx.task" ]; meta = { description = "API for interacting with the NI-DAQmx driver"; |