Skip to content

Commit 5169dc5

Browse files
committed
python311Packages.lsprotocol: refactor
1 parent 84a6efd commit 5169dc5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pkgs/development/python-modules/lsprotocol/default.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
buildPythonPackage rec {
1616
pname = "lsprotocol";
1717
version = "2023.0.1";
18-
format = "pyproject";
18+
pyproject = true;
1919

2020
disabled = pythonOlder "3.7";
2121

2222
src = fetchFromGitHub {
2323
owner = "microsoft";
24-
repo = pname;
24+
repo = "lsprotocol";
2525
rev = "refs/tags/${version}";
2626
hash = "sha256-PHjLKazMaT6W4Lve1xNxm6hEwqE3Lr2m5L7Q03fqb68=";
2727
};
@@ -70,6 +70,7 @@ buildPythonPackage rec {
7070
meta = with lib; {
7171
description = "Python implementation of the Language Server Protocol";
7272
homepage = "https://github.com/microsoft/lsprotocol";
73+
changelog = "https://github.com/microsoft/lsprotocol/releases/tag/${version}";
7374
license = licenses.mit;
7475
maintainers = with maintainers; [ doronbehar fab ];
7576
};

0 commit comments

Comments
 (0)