nixpkgs/pkgs/development/tools/cmake-language-server/default.nix

43 lines
962 B
Nix
Raw Normal View History

2021-10-04 06:53:33 +02:00
{ lib
, buildPythonApplication
, fetchFromGitHub
, poetry
, pygls
, pyparsing
, cmake
, pytest-datadir
, pytestCheckHook
2020-05-28 01:21:24 +02:00
}:
buildPythonApplication rec {
pname = "cmake-language-server";
2021-10-04 06:53:33 +02:00
version = "0.1.3";
2020-05-28 01:21:24 +02:00
format = "pyproject";
src = fetchFromGitHub {
owner = "regen100";
repo = pname;
rev = "v${version}";
2021-10-04 06:53:33 +02:00
sha256 = "sha256-eZBnygEYjLzk29tvLGg1JdhCECc5x2MewHRSChMuCjo=";
2020-05-28 01:21:24 +02:00
};
patches = [
2021-10-04 06:53:33 +02:00
# Test timeouts occasionally cause the build to fail
./disable-test-timeouts.patch
];
2020-05-28 01:21:24 +02:00
nativeBuildInputs = [ poetry ];
propagatedBuildInputs = [ pygls pyparsing ];
2021-10-04 06:53:33 +02:00
checkInputs = [ cmake pytest-datadir pytestCheckHook ];
2020-05-28 01:21:24 +02:00
dontUseCmakeConfigure = true;
2021-10-04 06:53:33 +02:00
pythonImportsCheck = [ "cmake_language_server" ];
2020-05-28 01:21:24 +02:00
meta = with lib; {
2020-05-28 01:21:24 +02:00
description = "CMake LSP Implementation";
2021-10-04 06:53:33 +02:00
homepage = "https://github.com/regen100/cmake-language-server";
2020-05-28 01:21:24 +02:00
license = licenses.mit;
maintainers = with maintainers; [ kira-bruneau ];
2020-05-28 01:21:24 +02:00
};
}