diff --git a/pkgs/development/python-modules/pytest-lsp/default.nix b/pkgs/development/python-modules/pytest-lsp/default.nix index 4fa32e477d79..d1758b118cf6 100644 --- a/pkgs/development/python-modules/pytest-lsp/default.nix +++ b/pkgs/development/python-modules/pytest-lsp/default.nix @@ -3,20 +3,21 @@ fetchPypi, buildPythonPackage, hatchling, - pygls, + pygls_2, pytestCheckHook, pytest-asyncio, + packaging, }: buildPythonPackage rec { pname = "pytest-lsp"; - version = "0.4.3"; + version = "1.0.0"; pyproject = true; src = fetchPypi { inherit version; pname = "pytest_lsp"; - hash = "sha256-ND9r2i+qMg7V/Ld8lCDScDzlZdHRRP6CfjGYp9wpkRw="; + hash = "sha256-uoyVstl1o2Akn/pXaOHm9E2H0Q73dUBw07MhECckovE="; }; build-system = [ @@ -24,8 +25,9 @@ buildPythonPackage rec { ]; dependencies = [ - pygls + pygls_2 pytest-asyncio + packaging ]; nativeCheckInputs = [