chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ng / nginx-language-server / package.nix
blob39a5a55f5abd9f03d1e165baf48ef4cf17f605d0
1 { lib
2 , python3
3 , fetchFromGitHub
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "nginx-language-server";
8   version = "0.8.0";
9   pyproject = true;
11   src = fetchFromGitHub {
12     owner = "pappasam";
13     repo = "nginx-language-server";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-AXWrNt4f3jkAbidE1goDgFicu4sSBv08f/Igyh2bRII=";
16   };
18   build-system = with python3.pkgs; [
19     poetry-core
20   ];
22   pythonRelaxDeps = [
23     "pydantic"
24   ];
26   dependencies = with python3.pkgs; [
27     crossplane
28     lsprotocol
29     pydantic
30     pygls
31   ];
33   pythonImportsCheck = [ "nginx_language_server" ];
35   meta = with lib; {
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";
42   };