diff options
Diffstat (limited to 'pkgs/development/python-modules/gcodepy/default.nix')
-rw-r--r-- | pkgs/development/python-modules/gcodepy/default.nix | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/gcodepy/default.nix b/pkgs/development/python-modules/gcodepy/default.nix index 51f32d202241..6e62d9bb3bf6 100644 --- a/pkgs/development/python-modules/gcodepy/default.nix +++ b/pkgs/development/python-modules/gcodepy/default.nix @@ -1,7 +1,8 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, setuptools +{ + lib, + buildPythonPackage, + fetchFromGitHub, + setuptools, }: buildPythonPackage rec { @@ -16,13 +17,9 @@ buildPythonPackage rec { hash = "sha256-+amBkwwISPyes8ABdqgCw50Zg5ioDa46WZgQsZZgl+8="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; - pythonImportsCheck = [ - "gcodepy" - ]; + pythonImportsCheck = [ "gcodepy" ]; meta = with lib; { description = "G-code generator for 3D printers that use Marlin Firmware"; |