diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2024-05-22 16:01:06 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2024-05-22 17:32:03 +0200 |
| commit | 59b1aef59071cae6e87859dc65de973d2cc595c0 (patch) | |
| tree | 18c3aaf31188cb7430359a1bb130d637a363351e /pkgs/development/python-modules/python-lsp-jsonrpc | |
| parent | python312Packages.waitress-django: clean source (diff) | |
| download | nixpkgs-59b1aef59071cae6e87859dc65de973d2cc595c0.tar.gz | |
python3Packages: format with nixfmt
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"; |
