blob: 5405a9f8d4f18481075622a03f8d87bc31bce111 (
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
|
{
lib,
fetchPypi,
buildPythonPackage,
hatchling,
pygls,
pytestCheckHook,
pytest-asyncio,
packaging,
}:
buildPythonPackage rec {
pname = "pytest-lsp";
version = "1.0.0";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "pytest_lsp";
hash = "sha256-uoyVstl1o2Akn/pXaOHm9E2H0Q73dUBw07MhECckovE=";
};
build-system = [
hatchling
];
dependencies = [
pygls
pytest-asyncio
packaging
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "pytest_lsp" ];
meta = {
homepage = "https://github.com/swyddfa/lsp-devtools";
changelog = "https://github.com/swyddfa/lsp-devtools/blob/develop/lib/pytest-lsp/CHANGES.md";
description = "Pytest plugin for writing end-to-end tests for language servers";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
clemjvdm
fliegendewurst
];
};
}
|