diff --git a/pkgs/development/python-modules/lsprotocol/default.nix b/pkgs/development/python-modules/lsprotocol/default.nix index 3b97c36a1804..e2dcd7bb9a74 100644 --- a/pkgs/development/python-modules/lsprotocol/default.nix +++ b/pkgs/development/python-modules/lsprotocol/default.nix @@ -35,10 +35,13 @@ buildPythonPackage rec { cattrs ]; + nativeCheckInputs = [ + pytest + ]; + checkInputs = [ jsonschema pyhamcrest - pytest ]; checkPhase = '' @@ -55,8 +58,8 @@ buildPythonPackage rec { ]; meta = with lib; { - homepage = "https://github.com/microsoft/lsprotocol"; description = "Python implementation of the Language Server Protocol"; + homepage = "https://github.com/microsoft/lsprotocol"; license = licenses.mit; maintainers = with maintainers; [ doronbehar fab ]; };