python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / fortran-language-server / default.nix
blob2c606ab715b512d061886889242c4752c5e2faf9
1 { lib, fetchPypi, buildPythonApplication }:
3 buildPythonApplication rec {
4   pname = "fortran-language-server";
5   version = "1.12.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "7Dkh7yPX4rULkzfJFxg47YxrCaxuHk+k3TOINHS9T5A=";
10   };
12   checkPhase = "$out/bin/fortls --help 1>/dev/null";
13   pythonImportsCheck = [ "fortls" ];
15   meta = with lib; {
16     description = "FORTRAN Language Server for the Language Server Protocol";
17     homepage = "https://pypi.org/project/fortran-language-server/";
18     license = [ licenses.mit ];
19     maintainers = [ maintainers.sheepforce ];
20   };