diff options
Diffstat (limited to 'pkgs/development/python-modules/umodbus/default.nix')
-rw-r--r-- | pkgs/development/python-modules/umodbus/default.nix | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/umodbus/default.nix b/pkgs/development/python-modules/umodbus/default.nix index 7ce499734203..d45aebe8d062 100644 --- a/pkgs/development/python-modules/umodbus/default.nix +++ b/pkgs/development/python-modules/umodbus/default.nix @@ -1,10 +1,10 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pyserial -, pytestCheckHook -, pythonOlder -, setuptools +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pyserial, + pytestCheckHook, + pythonOlder, }: buildPythonPackage rec { @@ -21,19 +21,13 @@ buildPythonPackage rec { hash = "sha256-5IXadb5mjrMwr+L9S1iMN5kba5VGrzYt1p8nBvvLCh4="; }; - propagatedBuildInputs = [ - pyserial - ]; + propagatedBuildInputs = [ pyserial ]; __darwinAllowLocalNetworking = true; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "umodbus" - ]; + pythonImportsCheck = [ "umodbus" ]; meta = with lib; { description = "Implementation of the Modbus protocol"; |