aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pygls/default.nix
blob: d563fa27669ebaab86cdcb74c3710f4842a78730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub
, mock, pytest, pytest-asyncio
}:

buildPythonPackage rec {
  pname = "pygls";
  version = "0.9.0";
  disabled = !isPy3k;

  src = fetchFromGitHub {
    owner = "openlawlibrary";
    repo = pname;
    rev = "v${version}";
    sha256 = "1wfp4hjin1mb6nkzhpfh5v8q8rwvn9zh0mwwj4dlxkqx5lp272hl";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace "pytest==4.5.0" "pytest"
  '';

  checkInputs = [ mock pytest pytest-asyncio ];
  checkPhase = "pytest";

  meta = with stdenv.lib; {
    homepage = "https://github.com/openlawlibrary/pygls";
    description = "Pythonic generic implementation of the Language Server Protocol";
    license = licenses.asl20;
    maintainers = with maintainers; [ metadark ];
  };
}