1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
{
lib,
attrs,
buildPythonPackage,
cattrs,
fetchFromGitHub,
flit-core,
importlib-resources,
jsonschema,
pyhamcrest,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "lsprotocol";
version = "2023.0.1"; # nixpkgs-update: no auto update
pyproject = true;
src = fetchFromGitHub {
owner = "microsoft";
repo = "lsprotocol";
tag = version;
hash = "sha256-PHjLKazMaT6W4Lve1xNxm6hEwqE3Lr2m5L7Q03fqb68=";
};
sourceRoot = "${src.name}/packages/python";
build-system = [
flit-core
];
dependencies = [
attrs
cattrs
];
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [
importlib-resources
jsonschema
pyhamcrest
];
disabledTests = [
# cattrs.errors.StructureHandlerNotFoundError: Unsupported type:
# typing.Union[str, lsprotocol.types.NotebookDocumentFilter_Type1,
# lsprotocol.types.NotebookDocumentFilter_Type2,
# lsprotocol.types.NotebookDocumentFilter_Type3, NoneType]. Register
# a structure hook for it.
"test_notebook_sync_options"
];
preCheck = ''
cd ../../
'';
pythonImportsCheck = [ "lsprotocol" ];
passthru.skipBulkUpdate = true;
meta = {
description = "Python implementation of the Language Server Protocol";
homepage = "https://github.com/microsoft/lsprotocol";
changelog = "https://github.com/microsoft/lsprotocol/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
doronbehar
fab
];
};
}
|