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