diff options
Diffstat (limited to 'pkgs/development/python-modules/python-lsp-jsonrpc')
| -rw-r--r-- | pkgs/development/python-modules/python-lsp-jsonrpc/default.nix | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/python-lsp-jsonrpc/default.nix b/pkgs/development/python-modules/python-lsp-jsonrpc/default.nix index 040d901a7e73..948eba8e6e57 100644 --- a/pkgs/development/python-modules/python-lsp-jsonrpc/default.nix +++ b/pkgs/development/python-modules/python-lsp-jsonrpc/default.nix @@ -1,11 +1,12 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pytestCheckHook -, pythonOlder -, setuptools -, setuptools-scm -, ujson +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pytestCheckHook, + pythonOlder, + setuptools, + setuptools-scm, + ujson, }: buildPythonPackage rec { @@ -32,17 +33,11 @@ buildPythonPackage rec { setuptools-scm ]; - propagatedBuildInputs = [ - ujson - ]; + propagatedBuildInputs = [ ujson ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "pylsp_jsonrpc" - ]; + pythonImportsCheck = [ "pylsp_jsonrpc" ]; meta = with lib; { description = "Python server implementation of the JSON RPC 2.0 protocol"; |
