diff options
Diffstat (limited to 'pkgs/development/python-modules/pyls-spyder/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pyls-spyder/default.nix | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/pyls-spyder/default.nix b/pkgs/development/python-modules/pyls-spyder/default.nix index d6da0c292596..de2cbdae88b8 100644 --- a/pkgs/development/python-modules/pyls-spyder/default.nix +++ b/pkgs/development/python-modules/pyls-spyder/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, python-lsp-server -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchFromGitHub, + python-lsp-server, + pytestCheckHook, }: buildPythonPackage rec { @@ -17,13 +18,9 @@ buildPythonPackage rec { sha256 = "11ajbsia60d4c9s6m6rbvaqp1d69fcdbq6a98lkzkkzv2b9pdhkk"; }; - propagatedBuildInputs = [ - python-lsp-server - ]; + propagatedBuildInputs = [ python-lsp-server ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "pyls_spyder" ]; @@ -31,6 +28,6 @@ buildPythonPackage rec { description = "Spyder extensions for the python-language-server"; homepage = "https://github.com/spyder-ide/pyls-spyder"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |