2021-10-04 12:37:57 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonApplication
|
|
|
|
, fetchFromGitHub
|
|
|
|
, poetry
|
|
|
|
, pygls
|
|
|
|
, pyparsing
|
|
|
|
, cmake
|
|
|
|
, pytest-datadir
|
|
|
|
, pytestCheckHook
|
2020-05-29 06:06:01 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "cmake-language-server";
|
2022-06-16 17:23:12 +00:00
|
|
|
version = "0.1.4";
|
2020-05-29 06:06:01 +00:00
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "regen100";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-06-16 17:23:12 +00:00
|
|
|
sha256 = "sha256-FOyyXSgoFpX4mOHFyZtVW618M1Xs7k+IioJzm1sdkKY=";
|
2020-05-29 06:06:01 +00:00
|
|
|
};
|
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
patches = [
|
2021-10-04 12:37:57 +00:00
|
|
|
# Test timeouts occasionally cause the build to fail
|
2021-05-28 09:39:13 +00:00
|
|
|
./disable-test-timeouts.patch
|
|
|
|
];
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace pyproject.toml \
|
|
|
|
--replace 'pyparsing = "^2.4"' 'pyparsing = "^3.0.6"'
|
|
|
|
'';
|
|
|
|
|
2020-05-29 06:06:01 +00:00
|
|
|
nativeBuildInputs = [ poetry ];
|
|
|
|
propagatedBuildInputs = [ pygls pyparsing ];
|
|
|
|
|
2021-10-04 12:37:57 +00:00
|
|
|
checkInputs = [ cmake pytest-datadir pytestCheckHook ];
|
2020-05-29 06:06:01 +00:00
|
|
|
dontUseCmakeConfigure = true;
|
2021-10-04 12:37:57 +00:00
|
|
|
pythonImportsCheck = [ "cmake_language_server" ];
|
2020-05-29 06:06:01 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-05-29 06:06:01 +00:00
|
|
|
description = "CMake LSP Implementation";
|
2021-10-04 12:37:57 +00:00
|
|
|
homepage = "https://github.com/regen100/cmake-language-server";
|
2020-05-29 06:06:01 +00:00
|
|
|
license = licenses.mit;
|
2021-05-28 09:39:13 +00:00
|
|
|
maintainers = with maintainers; [ kira-bruneau ];
|
2020-05-29 06:06:01 +00:00
|
|
|
};
|
|
|
|
}
|