From 8220ac3380bb3c505774e8b4886829ff63d05388 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 25 Jan 2023 13:06:05 +0100 Subject: [PATCH] python310Packages.lsprotocol: switch to nativeCheckInputs --- pkgs/development/python-modules/lsprotocol/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 ]; };