diff options
Diffstat (limited to 'pkgs/development/python-modules/bashlex/default.nix')
-rw-r--r-- | pkgs/development/python-modules/bashlex/default.nix | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/bashlex/default.nix b/pkgs/development/python-modules/bashlex/default.nix index ed5cb1a6091a..17d2485c6def 100644 --- a/pkgs/development/python-modules/bashlex/default.nix +++ b/pkgs/development/python-modules/bashlex/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, python -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchFromGitHub, + python, + pytestCheckHook, }: buildPythonPackage rec { @@ -23,9 +24,7 @@ buildPythonPackage rec { ${python.pythonOnBuildForHost.interpreter} -c 'import bashlex' ''; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "bashlex" ]; |