zfs_unstable: 2.3.0-rc3 -> 2.3.0-rc4 (#365045)
[NixPkgs.git] / pkgs / development / tools / language-servers / fortran-language-server / default.nix
blob419f372c9be1b56f0419a3e187b33869e5dc5b74
2   lib,
3   fetchPypi,
4   buildPythonApplication,
5 }:
7 buildPythonApplication rec {
8   pname = "fortran-language-server";
9   version = "1.12.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "7Dkh7yPX4rULkzfJFxg47YxrCaxuHk+k3TOINHS9T5A=";
14   };
16   checkPhase = "$out/bin/fortls --help 1>/dev/null";
17   pythonImportsCheck = [ "fortls" ];
19   meta = with lib; {
20     description = "FORTRAN Language Server for the Language Server Protocol";
21     mainProgram = "fortls";
22     homepage = "https://pypi.org/project/fortran-language-server/";
23     license = [ licenses.mit ];
24     maintainers = [ maintainers.sheepforce ];
25   };