blob: 7cde9005c7465ff278d8703f13d996182d54b255 (
plain)
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,
stdenv,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
attrs,
cattrs,
lsprotocol,
websockets,
pytest-asyncio,
pytestCheckHook,
nix-update-script,
}:
buildPythonPackage rec {
pname = "pygls";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "openlawlibrary";
repo = "pygls";
tag = "v${version}";
hash = "sha256-dQLK18EACiN+DpWp81Vgaan0mwtifhrmH4xwkqttKvg=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
attrs
cattrs
lsprotocol
];
optional-dependencies = {
ws = [ websockets ];
};
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
# Fixes hanging tests on Darwin
__darwinAllowLocalNetworking = true;
preCheck = lib.optionalString stdenv.hostPlatform.isDarwin ''
# Darwin issue: OSError: [Errno 24] Too many open files
ulimit -n 1024
'';
pythonImportsCheck = [ "pygls" ];
passthru.updateScript = nix-update-script {
extraArgs = [
# Skips pre-releases
"--version-regex"
"^v([0-9.]+)$"
];
};
meta = {
description = "Pythonic generic implementation of the Language Server Protocol";
homepage = "https://github.com/openlawlibrary/pygls";
changelog = "https://github.com/openlawlibrary/pygls/blob/${version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ kira-bruneau ];
};
}
|