python311Packages.lsprotocol: refactor

This commit is contained in:
Fabian Affolter
2024-01-24 08:55:08 +01:00
parent 84a6efdf7f
commit 5169dc5d8a
@@ -15,13 +15,13 @@
buildPythonPackage rec {
pname = "lsprotocol";
version = "2023.0.1";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "microsoft";
repo = pname;
repo = "lsprotocol";
rev = "refs/tags/${version}";
hash = "sha256-PHjLKazMaT6W4Lve1xNxm6hEwqE3Lr2m5L7Q03fqb68=";
};
@@ -70,6 +70,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python implementation of the Language Server Protocol";
homepage = "https://github.com/microsoft/lsprotocol";
changelog = "https://github.com/microsoft/lsprotocol/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar fab ];
};