6 python3.pkgs.buildPythonApplication rec {
7 pname = "nginx-language-server";
11 src = fetchFromGitHub {
13 repo = "nginx-language-server";
14 rev = "refs/tags/v${version}";
15 hash = "sha256-AXWrNt4f3jkAbidE1goDgFicu4sSBv08f/Igyh2bRII=";
18 build-system = with python3.pkgs; [
26 dependencies = with python3.pkgs; [
33 pythonImportsCheck = [ "nginx_language_server" ];
36 description = "Language server for nginx.conf";
37 homepage = "https://github.com/pappasam/nginx-language-server";
38 changelog = "https://github.com/pappasam/nginx-language-server/blob/${src.rev}/CHANGELOG.md";
39 license = licenses.gpl3Only;
40 maintainers = with maintainers; [ GaetanLepage ];
41 mainProgram = "nginx-language-server";