The 2025 version is a breaking change, we need to rollback to the 2023 version to fix all packages that depend on it. This still provides the 2025 version for future packages that will depend on the latest version.
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
attrs,
|
|
buildPythonPackage,
|
|
cattrs,
|
|
fetchFromGitHub,
|
|
flit-core,
|
|
importlib-resources,
|
|
jsonschema,
|
|
pyhamcrest,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lsprotocol";
|
|
version = "2025.0.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoft";
|
|
repo = "lsprotocol";
|
|
tag = version;
|
|
hash = "sha256-DrWXHMgDZSQQ6vsmorThMrUTX3UQU+DajSEOdxoXrFQ=";
|
|
};
|
|
|
|
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" ];
|
|
|
|
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
|
|
];
|
|
};
|
|
}
|