diff options
| author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2022-01-03 00:08:40 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-03 00:08:40 +0000 |
| commit | 4acff2bbdedb6892f4fe6225d77aa184a4500a82 (patch) | |
| tree | 9cf787a372c89c6c14ca99ed83cc7ed3a5dec7a7 /pkgs/development/python-modules/python-lsp-server | |
| parent | b0c76508ef985738a3b0f58420603b8933e03c12 (diff) | |
| parent | 74f542c42e5bca4f74f53cf7054c8a93d4736f51 (diff) | |
Merge master into haskell-updates
Diffstat (limited to 'pkgs/development/python-modules/python-lsp-server')
| -rw-r--r-- | pkgs/development/python-modules/python-lsp-server/default.nix | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/python-lsp-server/default.nix b/pkgs/development/python-modules/python-lsp-server/default.nix index 4aa8d853ebdb..b000379dd1bb 100644 --- a/pkgs/development/python-modules/python-lsp-server/default.nix +++ b/pkgs/development/python-modules/python-lsp-server/default.nix @@ -35,14 +35,15 @@ buildPythonPackage rec { pname = "python-lsp-server"; - version = "1.3.1"; - disabled = pythonOlder "3.6"; + version = "1.3.3"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "python-lsp"; repo = pname; rev = "v${version}"; - sha256 = "067dlhwwv4mkrirnmqinrvkbfx59hf7fiah081d62a46vxvpnv9s"; + sha256 = "sha256-F8f9NAjPWkm01D/KwFH0oA6nQ3EF4ZVCCckZTL4A35Y="; }; postPatch = '' @@ -96,7 +97,9 @@ buildPythonPackage rec { export HOME=$(mktemp -d); ''; - pythonImportsCheck = [ "pylsp" ]; + pythonImportsCheck = [ + "pylsp" + ]; meta = with lib; { description = "Python implementation of the Language Server Protocol"; |
